Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
i have created a cohort with a matrix visual where :
rows= month
columns= difference between current month and previous month
values= measure [total users]
i want the color to change according to the measure value each month
note that the first value in the matrix is blank and i want the formating to start from value 0
i have created this measure and used in the conditional formating
Solved! Go to Solution.
I accidentally copied and pasted the MAX into the filter part.
See if this works:
total users formating =
IF (
NOT ( ISBLANK ( MAX ( table[months_diff] ) ) ),
CALCULATE (
RANKX ( ALLSELECTED ( table[months_diff] ), [total users] ),
KEEPFILTERS ( NOT ( ISBLANK ( table[months_diff] ) ) )
)
)
I think the problem is that 0 <> BLANK() evaluates as False.
See if this works any better:
total users formating =
IF (
NOT ( ISBLANK ( MAX ( table[months_diff] ) ) ),
CALCULATE (
RANKX ( ALLSELECTED ( table[months_diff] ), [total users] ),
KEEPFILTERS ( NOT ( ISBLANK ( MAX ( table[months_diff] ) ) ) )
)
)
im getting this error when using the measure
The True/False expression does not specify a column. Each True/False expressions used as a table filter expression must refer to exactly one column.
I accidentally copied and pasted the MAX into the filter part.
See if this works:
total users formating =
IF (
NOT ( ISBLANK ( MAX ( table[months_diff] ) ) ),
CALCULATE (
RANKX ( ALLSELECTED ( table[months_diff] ), [total users] ),
KEEPFILTERS ( NOT ( ISBLANK ( table[months_diff] ) ) )
)
)
now its working thank you
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
11 |
User | Count |
---|---|
19 | |
14 | |
14 | |
11 | |
9 |