Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi Guys,
I used below dax to get previous sales amount; but i get blank amount
Solved! Go to Solution.
Hi @sneevand ,
You also could use the following measure:
Step 1, create a new column:
last month = DATEADD(Invoice[MonthValue],-1,MONTH)
Step 2 ,use the following dax to create a measure:
salelastmonth =
VAR last1 =
CALCULATE (
MAX ( Invoice[saleamount] ),
FILTER ( ALL ( Invoice ), Invoice[MonthValue] = MAX ( Invoice[last month] ) )
)
VAR last2 =
IF ( MAX ( Invoice[last month] ) = BLANK (), "first month", last1 )
RETURN
last2
final you will get below:
Click here to download pbix if you need.
Best Regard
Lucien Wang
Hi @sneevand ,
You also could use the following measure:
Step 1, create a new column:
last month = DATEADD(Invoice[MonthValue],-1,MONTH)
Step 2 ,use the following dax to create a measure:
salelastmonth =
VAR last1 =
CALCULATE (
MAX ( Invoice[saleamount] ),
FILTER ( ALL ( Invoice ), Invoice[MonthValue] = MAX ( Invoice[last month] ) )
)
VAR last2 =
IF ( MAX ( Invoice[last month] ) = BLANK (), "first month", last1 )
RETURN
last2
final you will get below:
Click here to download pbix if you need.
Best Regard
Lucien Wang
Hi @sneevand ,
You calculation is correct. You might try to mark your date table as Date table or to check calculations on this link:
https://community.powerbi.com/t5/Desktop/Previous-Month-show-blank/m-p/1401555
If it doesn't help, could you share the file (create dummy data, but keep the structure - tables, relationships, calculations).
Regards,
Nemanja Andic
Hi @nandic
below approach worked but on every year first month, Salespreviousmonth is blank 🙂
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 38 | |
| 38 | |
| 28 | |
| 27 |
| User | Count |
|---|---|
| 124 | |
| 88 | |
| 73 | |
| 66 | |
| 65 |