• Skip to main content
  • Skip to header right navigation
  • Skip to site footer

My Online Training Hub

Learn Dashboards, Excel, Power BI, Power Query, Power Pivot

  • Courses
  • Pricing
    • Free Courses
    • Power BI Course
    • Excel Power Query Course
    • Power Pivot and DAX Course
    • Excel Dashboard Course
    • Excel PivotTable Course – Quick Start
    • Advanced Excel Formulas Course
    • Excel Expert Advanced Excel Training
    • Excel Tables Course
    • Excel, Word, Outlook
    • Financial Modelling Course
    • Excel PivotTable Course
    • Excel for Customer Service Professionals
    • Excel for Operations Management Course
    • Excel for Decision Making Under Uncertainty Course
    • Excel for Finance Course
    • Excel Analysis ToolPak Course
    • Multi-User Pricing
  • Resources
    • Free Downloads
    • Excel Functions Explained
    • Excel Formulas
    • Excel Add-ins
    • IF Function
      • Excel IF Statement Explained
      • Excel IF AND OR Functions
      • IF Formula Builder
    • Time & Dates in Excel
      • Excel Date & Time
      • Calculating Time in Excel
      • Excel Time Calculation Tricks
      • Excel Date and Time Formatting
    • Excel Keyboard Shortcuts
    • Excel Custom Number Format Guide
    • Pivot Tables Guide
    • VLOOKUP Guide
    • ALT Codes
    • Excel VBA & Macros
    • Excel User Forms
    • VBA String Functions
  • Members
    • Login
    • Password Reset
  • Blog
  • Excel Webinars
  • Excel Forum
    • Register as Forum Member

GETPIVOTDATA Function for Power Pivot

You are here: Home / Power Pivot / GETPIVOTDATA Function for Power Pivot
GETPIVOTDATA Function for Power Pivot
March 14, 2019 by Mynda Treacy

The GETPIVOTDATA function divides Excel users. You either love it or hate it, but there are good reasons for learning to love it. I wrote about using the GETPIVOTDATA function for regular PivotTables many years ago and hopefully you’re embracing it now. If you’re a Power Pivot user, then you may have found that the GETPIVOTDATA function for Power Pivot, aka the Data Model, works a little differently.

Watch the Video

Subscribe YouTube

Download the Workbook

Download the Excel Workbook. Note: this is a .xlsx file please ensure your browser doesn't change the file extension on download.

Regular vs Power Pivot GETPIVOTDATA Function

You can easily tell if you’re referencing a regular PivotTable vs a Power Pivot PivotTable because the GETPIVOTDATA function for Power Pivot will have ‘measures’ in the formula arguments, as you can see below:

=GETPIVOTDATA("[Measures].[Average of Order Amount]",$B$9, "[Dates].[MonthName]","[Dates].[MonthName].&[Jan]")

Whereas a regular PivotTable GETPIVOTDATA formula won’t:

=GETPIVOTDATA("Order Amount",$A$4,"Order Date",1,"Years",2009)

Notice the Power Pivot GETPIVOTDATA function also references the table name, field name and item name:

=GETPIVOTDATA("[Measures].[Average of Order Amount]",$B$9, 
"[Table Name].[Field Name]","[Table Name].[Field Name].&[Item Name]"
)

For example:

=GETPIVOTDATA("[Measures].[Average of Order Amount]",$B$9, 
"[Dates].[MonthName]","[Dates].[MonthName].&[Jan]"
)

The Problem with GETPIVOTDATA

GETPIVOTDATA is not relative, meaning if you copy and paste it to another cell it will give you the same results, as you can see below with the formula in cell D11 that simply returns the value for Alberta from cell C11. When copied down to row 23 it returns the same value for Alberta on every row:

GETPIVOTDATA Function for Power Pivot

This is because the province, Alberta, is hard-keyed in the formula:

=GETPIVOTDATA("[Measures].[Average of Order Amount]",$B$10,"[Customers].[Province]","[Customers].[Province].&[Alberta]")

Relative GETPIVOTDATA Function for Power Pivot

Don’t despair because writing relative Power Pivot GETPIVOTDATA formulas is easy. All we need to do is replace the hard-keyed argument with a reference to the cell containing the province, so that when it’s copied down it picks up the next province.

Using the formula above we replace Alberta with a reference to cell B11, as shown below:

=GETPIVOTDATA("[Measures].[Average of Order Amount]",$B$10,"[Customers].[Province]","[Customers].[Province].&["&B11&"]")

The tricky part is getting the square brackets and double quotes correct so I’ve highlighted the extra characters required in blue font below:

=GETPIVOTDATA("[Measures].[Average of Order Amount]",$B$10,"[Customers].[Province]","[Customers].[Province].&["&B11&"]")

These characters in blue simply concatenate a closing square bracket to the province name. When we copy this formula down, we get relative references that return the Order Amount for the corresponding row:

relative GETPIVOTDATA formulas

While the above example handles a single relative reference, we can also make multiple row and column labels relative. In the example PivotTable below, we have both province and month:

PivotTable example

The GETPIVOTDATA formula referencing cell C11 would be:

=GETPIVOTDATA("[Measures].[Average of Order Amount]",$B$9,"[Customers].[Province]", "[Customers].[Province].&[Alberta]","[Dates].[MonthName]","[Dates].[MonthName].&[Jan]")

We can change the province and month values in red font to make the formula relative like so:

=GETPIVOTDATA("[Measures].[Average of Order Amount]",$B$9,"[Customers].[Province]", "[Customers].[Province].&["&B11&"]","[Dates].[MonthName]","[Dates].[MonthName].&["&C10&"]")

Note: In the examples above I am referencing the PivotTable row and column labels, but you can also reference cells on other sheets that contain the province and month names. You just need to ensure the spelling is the same as that found in the PivotTable.

Tip: The GETPIVOTDATA function arguments are:

=GETPIVOTDATA(data_field, pivot_table, field, item,...)

Since we can only replace ‘item’ arguments with cell references, I always let Excel write the GETPIVOTDATA formula first by referencing a PivotTable value cell that I want returned. I then edit the formula and replace the hard-keyed item arguments with cell references.

So, now you have no excuse not to use GETPIVOTDATA. I encourage you to use it because it reduces the risk of formula errors caused by changes to the shape of the PivotTable.

Dynamic GETPIVOTDATA Formulas

The example above deals with copying and pasting GETPIVOTDATA formulas, but sometimes you might want to link it to a drop-down list that allows your user to choose what data they want displayed, as shown below:

dynamic GETPIVOTDATA formulas

Related Lessons

Relative GETPIVOTDATA formulas for regular PivotTables.

GETPIVOTDATA Function for Power Pivot

More Power Pivot Posts

CUBE Functions

Excel CUBE Functions

Excel CUBE Functions are a great alternative to GETPIVOTDATA for Power Pivot PivotTables and still work with Slicers.
Introduction to DAX

Introduction to DAX Measures

Introduction to DAX in Power BI and Excel. Where and how to write DAX measures, understanding filter context and more.

Toggle Top N with Slicers

Toggle Top N with Slicers using disconnected tables in Power Pivot. These easy measures allow users to choose their top n.
power pivot running total

Power Pivot Running Total

The defaul Power Pivot Running Total setting doesn't handle aggregated periods. This measure solves this issue.
static data tables

Static Tables in Power Query, Power Pivot and Power BI

Use static tables to store data in Power Query, Power Pivot and Power BI without needing to load data from an external source
custom formatting strings in power bi

Custom Formatting Strings in Power BI

Control how data is displayed in Power BI using your own formats. Like hiding negative or zero values, using symbols or custom number formats
values_as_%_of_another_column_thumb

Show Values as Percentage of Another PivotTable Column Total

Show Values as % of Another PivotTable Column Total can't be done with regular PivotTables, however with Power Pivot we can use a DAX measure.
Change PivotTable Aggregation Methods using Excel Slicers

Change PivotChart Aggregation Methods using Excel Slicers

Change Pivot Chart Aggregation Methods using Excel Slicers and Power Pivot. Disconnected tables and the SWITCH function are the secret sauce.
PivotTable Distinct Count

Excel PivotTable Distinct Count

Excel PivotTable Distinct Count, sometimes called ‘Unique Count’ will return a count of unique items in a field. It uses the Data Model (Power Pivot).
Power Pivot does VLOOKUP

Power Pivot does VLOOKUP

Creating PivotTables from multiple tables used to require consolidating the data into one table, but now Power Pivot does VLOOKUP, kind of. So you don't need to.


Category: Power Pivot
Previous Post:values_as_%_of_another_column_thumbShow Values as Percentage of Another PivotTable Column Total
Next Post:Get Data from the Web with Power QueryGet Data from the Web with Power Query

Reader Interactions

Comments

  1. Chris Mc

    March 24, 2022 at 2:55 am

    Does this allow for a does not equal?
    For example, if i want to exclude “Rejected” from my pivot, can i do something like this:

    “[Application_Summary].[Admission Status]”,”[Application_Summary].[Admission Status].&[Rejected]”,

    to this…

    “[Application_Summary].[Admission Status]”,”[Application_Summary].[Admission Status].&&[Rejected]”,

    Reply
    • Mynda Treacy

      March 24, 2022 at 9:45 am

      Hi Chris,

      Just put the Admission Status field in the Filters area of the PivotTable and set it to exclude Rejected. That way you don’t need to write it into the formula.

      Mynda

      Reply
  2. Thao

    March 4, 2022 at 7:28 pm

    Thanks a lot! Your video and guidance help me a lot!

    Reply
    • Mynda Treacy

      March 4, 2022 at 10:24 pm

      Great to hear, Thao!

      Reply
  3. Gerry

    February 13, 2022 at 6:21 am

    I tried the formulae structure like you outlined but I get REF ERROR.

    Power Pivot Table
    =GETPIVOTDATA(“[Measures].[Sum of Budgeted Sales]”,$D$3,”[Budget].[CalendarYear]”,”[Budget].[CalendarYear].&[2.001E3]”)

    =GETPIVOTDATA(“[Measures].[Sum of Budgeted Sales]”,$D$3,”[Budget].[CalendarYear]”,”[Budget].[CalendarYear].&[“&G4&”]”)

    G$ value from date column

    Can figure out where I went wrong

    Reply
    • Mynda Treacy

      February 13, 2022 at 8:39 am

      Hi Gerry,

      I suspect the value in cell G4 is not in the format 2.001E3

      Mynda

      Reply
  4. Mohammad Ali

    April 13, 2021 at 1:36 pm

    Hi

    I tried to use the modification but its still giving me an error, not sure if im doing something wrong. the original and modified formula is as below:

    original:

    =GETPIVOTDATA(“[Measures].[Distinct Count of Name]”,Output_PVT!$A$156,”[Table1 date Name].[date]”,”[Table1 date Name].[date].&[Aug-17]”,”[Table1 date Name].[P value]”,”[Table1 date Name].[P value].&[]”)

    modified:
    =GETPIVOTDATA(“[Measures].[Distinct Count of Name]”,Output_PVT!$A$156,”[Table1 date Name].[date]”,”[Table1 date Name].[date].&[“&I1&”]”,”[Table1 date Name].[P value]”,”[Table1 date Name].[P value].&[“&O9&”]”)

    Reply
    • Mynda Treacy

      April 13, 2021 at 2:21 pm

      Hi Mohammad,

      The original formula implies the P value is blank, so if you’re now trying to insert a P value from cell O9, perhaps that’s the problem. It’s impossible to say for sure without seeing your file. If you’re still stuck please post your question on our Excel forum where you can also upload a sample file and we can help you further.

      Mynda

      Reply
  5. Bernhard x Lipka

    February 16, 2021 at 5:41 am

    Thank you, this was extremely helpful.

    Reply
    • Mynda Treacy

      February 16, 2021 at 8:38 am

      Great to hear!

      Reply
  6. Rajiv Daga

    September 17, 2020 at 11:47 pm

    Thank you for this awesome post it was really helpful and saved my day. I cleared most of the stuff following the details above but I am stuck at one pont. It will be really helpful if you can guide me.

    Cell A2 has date which is coming from a link to another cell
    =IFERROR(IF(Pivots!BE6=”Grand Total”,””,IF(Pivots!BE6=0,””,’Data Model’!AX4)),””)

    Cell B1 has hard coded time as (0,1,2,3…… 23)

    In Cell B2 I am trying to run the GETPIVOTDATA and it is showing the result, but as soon as I make it ref to cell A2 to get the date it is throwing an error.

    =GETPIVOTDATA(“[Measures].[Count of Incident #]”,’Data Model’!$AZ$3,”[Range 1].[Time]”,”[Range 1].[Time].&[“&B$1&”]”,”[Range 1].[Date]”,”[Range 1].[Date].&[“&VALUE(A2)&”]”)

    Please help.

    PS. Will not be able to share the file as has office data.

    Reply
    • Mynda Treacy

      September 18, 2020 at 11:29 am

      Hi Rajiv,

      You need to look at the format of the date in the PivotTable that you want to replace with a cell reference and ensure the cell A2 uses the exact same format. And when I say format, I mean the underlying value in the cell must match the way it is stored in the PivotTable. If you build the GETPIVOTDATA formula using your mouse you will be able to see what Excel is expecting in the Time component of the formula. I hope that helps.

      Mynda

      Reply
      • Rajiv Daga

        September 19, 2020 at 9:19 am

        Thank you Mynda for the quick guide. Yes it does and I did try doing that earlier but the issue was still there. I have created a sample file but not able to find a place to upload the same ;(

        Reply
      • Rajiv Daga

        September 19, 2020 at 9:23 am

        as was unable to find the upload option sharing the drive link to the file. Hope it helps

        https://drive.google.com/file/d/1NIXYx1qahVRQhEQ6-Aa_6-DBqF93dLe8/view?usp=sharing

        Reply
        • Mynda Treacy

          September 19, 2020 at 6:26 pm

          Hi Rajiv,

          Thanks for sharing your file. If you enter the GETPIVOTDATA formula by selecting the cell B5 on Sheet3 you can see this formula is returned:

          =GETPIVOTDATA("[Measures].[Count of Incident #]",Sheet3!$A$3,"[Range].[Date]","[Range].[Date].&[2020-09-01T00:00:00]","[Range].[Time]","[Range].[Time].&[1]")

          The problem in your formula is caused by the date reference. You can see above the date is [2020-09-01T00:00:00] i.e. including the time element, but the dates in column A of Sheet2 are only the date portion.

          Replace your formula in cell C2 of Sheet2 with this formula:

          =GETPIVOTDATA("[Measures].[Count of Incident #]",Sheet3!$A$3,"[Range].[Date]","[Range].[Date].&["&TEXT($A2,"yyyy-mm-dd")&"T00:00:00]","[Range].[Time]","[Range].[Time].&["&C$1&"]")

          Mynda

          Reply
          • Rajiv Daga

            September 20, 2020 at 10:25 pm

            Thank you Thank You Thank You Mynda… You are a real life saver 🙂

          • Mynda Treacy

            September 21, 2020 at 8:04 am

            My pleasure, Rajiv!

  7. Tracy Kirkman Johnson

    September 10, 2020 at 10:40 pm

    Hi there,

    Has the referencing convention changed for relative GETPIVOTDATA in excel office 365? I use exactly as instructed above, but keep getting #REF error.

    Excel formual is: =GETPIVOTDATA(“[Measures].[GRPs]”,$A$7,”[F_GRPTracking].[Brand]”,”[F_GRPTracking].[Brand].&[OUTSURANCE]”)

    I changed the last square bracket hard code to: =GETPIVOTDATA(“[Measures].[GRPs]”,$A$7,”[F_GRPTracking].[Brand]”,”[F_GRPTracking].[Brand].&[“&A13&”]”).

    If I input another set of ” after the & as suggested by Catalin, I get the “excel thinks this is a formula” error.

    thanks
    Tracy.

    Reply
    • Catalin Bombea

      September 11, 2020 at 3:50 am

      Hi Tracy,
      Can you select this section of the formula: “[F_GRPTracking].[Brand].&[“&A13&”]” (including all double quotes) in the formula bar, then press F9 Key?
      You should see in formula bar the result of that concatenation, should be like: “[F_GRPTracking].[Brand].&[OUTSURANCE]”
      Make sure the value you have in A13 is exactly the same, (no invisible chars like spaces for example), is visible in the pivot, the ref error is returned if that item is not visible.

      Reply
  8. Mardi Linke

    August 26, 2020 at 11:26 am

    Hi, I’m sure I’ve done this before and it worked but it doesn’t anymore – has something changed? Or am I missing something? The formula provided by Excel is:

    =GETPIVOTDATA(“[Measures].[Sum of Employees]”,$A$79,”[Employees per month].[Month End]”,”[Employees per month].[Month End].&[2019-02-28T00:00:00]”)

    I want to make the last set of square brackets dynamic so I changed it to this:

    =GETPIVOTDATA(“[Measures].[Sum of Employees]”,$A$79,”[Employees per month].[Month End]”,”[Employees per month].[Month End].&[“&B80&”]”)

    But I get a #REF error. In the pivot table, row 81 is the total row, row 80 is the header row. The pivot table has no rows in between. Is this the problem?

    Reply
    • Catalin Bombea

      August 26, 2020 at 1:10 pm

      Is the formula correct? I don’t see a double quote:
      [Month End].& “ [“&B80&”]”)
      Make sure you test it on a pivot that has data, not an empty PT.
      Cheers,
      Catalin

      Reply
  9. Nicholas

    June 17, 2020 at 12:11 am

    What are [Customers] and [Dates] referring to in these examples? They are neither visible nor explicit. I am trying to extract Distinct Count of Months where multiple criteria are met. Some are 3 months, some are all 12, but trying to figure out how to assemble the references is not articulated on two dozen sites I have already tried to get this answer from.

    Reply
    • Mynda Treacy

      June 17, 2020 at 10:02 am

      Hi Nicholas,

      Power Pivot GETPIVOTDATA formulas reference the table, field and item e.g. =GETPIVOTDATA(“[Measures].[Average of Order Amount]”,$B$10,”[Table].[Field].&[Item]”)

      [Customers] and [Dates] are referring to tables with those names. If you’re trying to do a distinct count then you don’t need GETPIVOTDATA, you can simply use Distinct Count in Power Pivot.

      Mynda

      Reply
  10. Mark

    May 24, 2020 at 7:37 am

    My data is a connection only w/ data model enabled and my dates when using a pivot table associated w/ GetPivotdata is giving me #REF! errors. However, if I use “Close & Load” which directly uploads the data into a table within Excel the GetPivotData formula works correctly as you outline above ([“&B11&”]”,”[Dates].[MonthName]”,”[Dates].[MonthName].&[“&C10&”]”)). I need to change the direct identifiers within the GetPivotData formula associated w/ my pivot table to a cell reference (as shown above) within a report due to the massive file size of the raw data but haven’t found the resolution as of yet. I used your instructions shown above within the GetPivotData formula for all references and they have worked except for the date reference. I’ve made sure the Data Model and Power Query have the column as a date, check Excel (pivot table) and it is also identified as a short date, but each time I use the same instructions as shown above on your site I only get #REF! error.

    Reply
    • Mynda Treacy

      May 24, 2020 at 10:42 am

      Hi Mark,

      I usually reference the value cell and allow GETPIVOTDATA to write the formula so I can see the exact structure of the date fields it’s looking for. Usually the month is a text field, as opposed to a date formatted as mmm. If you’re still stuck, please post your question on our Excel forum where you can share a sample Excel file or screenshots.

      Mynda

      Reply
  11. Nicolas

    February 21, 2020 at 4:20 am

    How do we use the VBA method GetPivotData when using the Data Model?

    Reply
    • Philip Treacy

      February 21, 2020 at 11:15 am

      Hi Nicolas,

      Have you read this?

      https://docs.microsoft.com/en-us/office/vba/api/excel.pivottable.getpivotdata

      If you have a specific question or problem you can post it on our forum.

      Regards

      Phil

      Reply
  12. Tobias

    February 8, 2020 at 9:00 am

    Thank you. You have no idea how long I looked for the answer to this! I have a grouped months field as columns and a grouped year field as rows. I wanted to have a simple table on another sheet which referenced this data. All other “help” on the internet didn’t come close to solving this problem, but you did.

    What a relief!

    Reply
    • Mynda Treacy

      February 8, 2020 at 9:44 am

      So glad we could help, Tobias 🙂

      Reply
  13. Mike

    November 21, 2019 at 2:19 am

    Great info, thanks! I am struggling with making a formula have a dynamic “year” reference. I pull data to an excel sheet from a power pivot, and have the nation change dynamically, but the year does not. Any thoughts? This is what I have so far- =GETPIVOTDATA(“[Measures].[Sum of IMPORTS_QTY]”,Data!$A$5,”[NATION_ANNUAL].[YEAR]”,”[NATION_ANNUAL].[YEAR].&[1.99E3]”,”[NATIONS].[LT_KSD_NATION_NAME]”,”[NATIONS].[LT_KSD_NATION_NAME].&[“&$B15&”]”) . The start year is 1990, and I do not understand what the 1.99E3 does. Thank you!

    Reply
    • Catalin Bombea

      November 21, 2019 at 5:16 am

      Hi Mike,
      1.99E3 is equal to 1.99*10^3=1990

      Reply
      • Mike

        November 21, 2019 at 5:36 am

        Thanks Catalin! I am now more smarterly. What I cannot figure out is how to make that dynamic, so I can replace 1.99E3 with a cell reference and have it not throw the #REF error. I hit two different tables in an Access db and join them in a power pivot, then use that as a data source. As a Band-Aid I tried writing the full query in Access and hitting THAT as a data source, and then this works: =GETPIVOTDATA(“IMPORTS_QTY”,Data2!$A$5,”LT_KSD_NATION_NAME”,$B18,”YEAR”,C$1) where B is Nations and C is Years. I am trying to discover a way to edit the initial example to dynamically change the year as well as the nation to roll out to several other projects. Any tips are tremendously appreciated!

        Reply
        • Catalin Bombea

          November 22, 2019 at 4:31 am

          Hi Mike,
          Not sure why it takes the year in scientific format, but you have to format the cell in the same format, if that’s what the formula needs.

          Reply
        • Wayne

          February 13, 2020 at 2:10 am

          I had a similar issue that I resolved as follows…

          In my case, the underlying data model was created through PowerPivot. Through PowerPivot, you can see the formatting type when you select the column in question and then review “Home > Formatting > Data Type” within the PowerPivot ribbon. Most likely, the formatting is set up a decimal number. If you change the formatting to whole number, you should now be able to reference GetPivotData as a whole number!

          Reply
  14. leroy holmes

    March 15, 2019 at 6:53 am

    Brilliant. Thanks 🙂

    Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Current ye@r *

Leave this field empty

Sidebar

More results...

Featured Content

  • 10 Common Excel Mistakes to Avoid
  • Top Excel Functions for Data Analysts
  • Secrets to Building Excel Dashboards in Less Than 15 Minutes
  • Pro Excel Formula Writing Tips
  • Hidden Excel Double-Click Shortcuts
  • Top 10 Intermediate Excel Functions
  • 5 Pro Excel Dashboard Design Tips
  • 5 Excel SUM Function Tricks
  • 239 Excel Keyboard Shortcuts

100 Excel Tips and Tricks eBook

Download Free Tips & Tricks

Subscribe to Our Newsletter

Receive weekly tutorials on Excel, Power Query, Power Pivot, Power BI and More.

We respect your email privacy

Guides and Resources

  • Excel Keyboard Shortcuts
  • Excel Functions
  • Excel Formulas
  • Excel Custom Number Formatting
  • ALT Codes
  • Pivot Tables
  • VLOOKUP
  • VBA
  • Excel Userforms
  • Free Downloads

239 Excel Keyboard Shortcuts

Download Free PDF

Free Webinars

Excel Dashboards Webinar

Watch our free webinars and learn to create Interactive Dashboard Reports in Excel or Power BI

Click Here to Watch Now

mynda treacy microsoft mvpHi, I'm Mynda Treacy and I run MOTH with my husband, Phil. Through our blog, webinars, YouTube channel and courses we hope we can help you learn Excel, Power Pivot and DAX, Power Query, Power BI, and Excel Dashboards.

Blog Categories

  • Excel
  • Excel Charts
  • Excel Dashboard
  • Excel Formulas
  • Excel PivotTables
  • Excel Shortcuts
  • Excel VBA
  • General Tips
  • Online Training
  • Outlook
  • Power Apps
  • Power Automate
  • Power BI
  • Power Pivot
  • Power Query
microsoft mvp logo
trustpilot excellent rating
Secured by Sucuri Badge
MyOnlineTrainingHub on YouTube Mynda Treacy on Linked In Mynda Treacy on Instagram Mynda Treacy on Twitter Mynda Treacy on Pinterest MyOnlineTrainingHub on Facebook
 

Company

  • About My Online Training Hub
  • Disclosure Statement
  • Frequently Asked Questions
  • Guarantee
  • Privacy Policy
  • Terms & Conditions
  • Testimonials
  • Become an Affiliate

Support

  • Contact
  • Forum
  • Helpdesk – For Technical Issues

Copyright © 2023 · My Online Training Hub · All Rights Reserved. Microsoft and the Microsoft Office logo are trademarks or registered trademarks of Microsoft Corporation in the United States and/or other countries. Product names, logos, brands, and other trademarks featured or referred to within this website are the property of their respective trademark holders.