Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi all,
I have a Slicer selection based on a Chicklet. If no values are selected in the slicer (all selections), then i'll need to see Column A in my table (to be visualised in a graph). However, if there is even one value selected in the slicer selection, then I'll want to see Column B in my table.
How can I accomplish this ?
Regards,
Manick
You can create a new measure like the following:
(Note: the MAX function could be substituted with some other aggregate)
Value =
IF(
ISFILTERED(YourTable[YourFilterValue]),
MAX(YourTable[ColumnA]),
MAX(YourTable[ColumnB])
)alternatively, you could have a single measure associated with each column, like this:
Value A=
IF(
ISFILTERED(YourTable[YourFilterValue]),
MAX(YourTable[ColumnA]),
BLANK()
)Value B =
IF(
ISFILTERED(YourTable[YourFilterValue]),
BLANK(),
MAX(YourTable[ColumnB])
)
Thanks for the suggestion - but that doesn't work.
@Manick1012 - Could you share a screenshot of the table, measure text, result, and expected result. It may be more beneficial to share the pbix, as well.
Thanks,
Nathan
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.