The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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
User | Count |
---|---|
26 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
31 | |
11 | |
10 | |
10 | |
9 |