Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello all! I am reaching out because I created a table which displays scores from a current month and previous month, and the % change from them. (See Below). One question I was wondering is if there was a way to include in my DAX formula which show if a previous month score or current month score is not showing anything, then there is no % change? I highlighted the examples.
Solved! Go to Solution.
@PrivateAnalytic , try a measure like
if(isblank([current month]) || isblank([previous month]) , blank(), divide([current month], [previous month]) )
Power BI — Month on Month with or Without Time Intelligence
https://medium.com/@amitchandak.1978/power-bi-mtd-questions-time-intelligence-3-5-64b0b4a4090e
https://www.youtube.com/watch?v=6LUBbvcxtKA
@PrivateAnalytic , try a measure like
if(isblank([current month]) || isblank([previous month]) , blank(), divide([current month], [previous month]) )
Power BI — Month on Month with or Without Time Intelligence
https://medium.com/@amitchandak.1978/power-bi-mtd-questions-time-intelligence-3-5-64b0b4a4090e
https://www.youtube.com/watch?v=6LUBbvcxtKA
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
25 | |
10 | |
7 | |
6 | |
6 |
User | Count |
---|---|
30 | |
11 | |
11 | |
10 | |
6 |