Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
92 | |
75 | |
65 | |
49 | |
36 |
User | Count |
---|---|
115 | |
89 | |
80 | |
59 | |
40 |