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.
Hai Expert,
I need to creata a dax that will shows dash (-) when user choose year slicer 2023 onwards , this dash is to replace value null/blank for the year 2023 onwards.
Hi, @Julaiha
Here is the sample DAX based on your requirement.
Measure =
CALCULATE(
MAX('YourTable'[OriginalColumn]),
FILTER(
'YourTable',
'YourTable'[Year] < 2023
)
) & IF(MAX('YourTable'[Year]) >= 2023, "-", "")
Proud to be a Super User!
@Julaiha Is this required in a slicer or what? Share an image on what the requirement is.
User | Count |
---|---|
85 | |
79 | |
64 | |
52 | |
46 |
User | Count |
---|---|
101 | |
44 | |
41 | |
39 | |
36 |