The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello Everyone,
Greetings,
i have created below matrix visual with with Year and month in column Region in rows
i have to add new column after each month and which give the comparision of current month values with previous month values as shown below.
Green down Arrow - Indicates Current month values is less compared to previous month
Yellow line - Indicates current month values are to previous month
Red Up Arrow - Indicates Current month values is less compared to previous month
Solved! Go to Solution.
@Anonymous
Hope you have a dates table in your model and it is connected to your fact table. I used the Power BI sample data and created the expected results. The file is attached below my signature.
You need to create a measure to evaluate the status and assign it to the CF logic.
DAX Formula to get the logic:
Growth =
VAR __SALES = [Total Sales]
VAR __PM =
CALCULATE(
[Total Sales],
DATEADD( Dates[Date] , -1 , MONTH )
)
RETURN
IF(
NOT( ISEMPTY(financials) ) && __PM <> BLANK() && HASONEVALUE(Dates[Year Month No]),
SWITCH(
TRUE(),
__SALES > __PM ,1,
__SALES = __PM, 0,
__SALES < __PM,-1
)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Anonymous
Hope you have a dates table in your model and it is connected to your fact table. I used the Power BI sample data and created the expected results. The file is attached below my signature.
You need to create a measure to evaluate the status and assign it to the CF logic.
DAX Formula to get the logic:
Growth =
VAR __SALES = [Total Sales]
VAR __PM =
CALCULATE(
[Total Sales],
DATEADD( Dates[Date] , -1 , MONTH )
)
RETURN
IF(
NOT( ISEMPTY(financials) ) && __PM <> BLANK() && HASONEVALUE(Dates[Year Month No]),
SWITCH(
TRUE(),
__SALES > __PM ,1,
__SALES = __PM, 0,
__SALES < __PM,-1
)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
113 | |
80 | |
77 | |
43 | |
39 |
User | Count |
---|---|
150 | |
117 | |
67 | |
64 | |
56 |