Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
sohail1432
Regular Visitor

Azure Cost Management App

I have pulled data feom Azure cost Management app into power BI desktop for 5 months. Now I want to modify it and want last 2 years data. How to do it.

1 REPLY 1
Anonymous
Not applicable

Hi @sohail1432 ,

1. Consider creating a scheduled export of your Azure cost data to Azure Storage:
Tutorial - Create and manage exported data from Cost Management

2. If you want to import two years' worth of data at once, you can also query it multiple times and then merge it; you just need to make sure that you don't query more than three months' worth of data at a time:

let
    enrollmentNumber = "<<Enrollment Number>>",
	optionalParametersx = ... ,
	sourcex = ... ,
	riusagedetailsx = xxx ,
	...
	...
	...
    optionalParameters1 = [startBillingDataWindow = "-9", endBillingDataWindow = "-6"],
    source1 = AzureCostManagement.Tables("Enrollment Number", enrollmentNumber, 5, optionalParameters1),
    riusagedetails1 = source1{[Key="riusagedetails"]}[Data],
    optionalParameters2 = [startBillingDataWindow = "-6", endBillingDataWindow = "-3"],
    source2 = AzureCostManagement.Tables("Enrollment Number", enrollmentNumber, 5, optionalParameters2),    
    riusagedetails2 = source2{[Key="riusagedetails"]}[Data],
    riusagedetails = Table.Combine({riusagedetails1, riusagedetails2,...,riusagedetailsx})
in
    riusagedetails


Connect to Azure Cost Management data in Power BI Desktop. - Power BI | Microsoft Learn
Table.Combine - PowerQuery M | Microsoft Learn

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.