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
Hi all,
Urgent help !! I am writing a dax measure for a matrix table so the table has month in columns and Items in row will share the screenshot below for reference. I have a slicer for year & for NWA Numbers
Now the condition required is if the year is between 2020 till 2022 I want the color of columns to be green including the Row grand total. Now if the year is 2023 I need the current month which is february as green rest all other months as blue including the Row grand total. However for certain month there are records in the excel file which is used for the matrix table values because of which it is blank so how do I write a measure for blank cells
Measure written as follows :
IF (Max(Month index) > Month(now) && Max(Year) = year(now) , "Sky Blue", "Light Green")
In this what happens is for the blank cells which don't have records in the file the condition fails and it show light green even the month is not the current month screen shot as below can someone help me writing the dax for this one. Your help is appreciated
try
IF(
OR(
Max(Month index) > Month(now) && Max(Year) = year(now),
AND(Max(Month index) = 2, Max(Year) = 2023)
),
IF(ISBLANK(SUM(MatrixTable[Value])), BLANK(), "Sky Blue"),
"Light Green"
)
Hi,
thankyou for the help but it's not working I have been trying to get blank values of the rest of the months as blue but it is showing green only since it's failing the condition
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.
User | Count |
---|---|
108 | |
77 | |
73 | |
47 | |
39 |
User | Count |
---|---|
137 | |
108 | |
69 | |
64 | |
56 |