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
I have a direct query to my data set yet I need the follwoing:
When there is no value selected in the slicer for example when there is no date selected or there is no customer number selected then my table should rest in null and only show values if the user selects a date and a customer number.
Thanks
Solved! Go to Solution.
Assuming you have a date slicer and a customer number slicer, and you want your table to show values only when both a date and a customer number are selected, you can create a measure that checks if the slicers have selections and then display the values accordingly.
Here's an example of how you might structure your DAX measure:
YourMeasure =
IF (
ISFILTERED('DateTable'[DateColumn]) && ISFILTERED('CustomerTable'[CustomerNumberColumn]),
-- Show your values here when both slicers are selected
SUM('YourDataTable'[YourValueColumn]),
-- Show null when either or both slicers are not selected
BLANK()
)
In this example:
This DAX measure checks if both slicers are filtered (ISFILTERED function) and, if so, displays the sum of your values; otherwise, it displays BLANK().
You can adjust this DAX code based on your specific data model and column names. Remember to replace the placeholder table and column names with your actual table and column names.
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
In case there is still a problem, please feel free and explain your issue in detail, It will be my pleasure to assist you in any way I can.
Assuming you have a date slicer and a customer number slicer, and you want your table to show values only when both a date and a customer number are selected, you can create a measure that checks if the slicers have selections and then display the values accordingly.
Here's an example of how you might structure your DAX measure:
YourMeasure =
IF (
ISFILTERED('DateTable'[DateColumn]) && ISFILTERED('CustomerTable'[CustomerNumberColumn]),
-- Show your values here when both slicers are selected
SUM('YourDataTable'[YourValueColumn]),
-- Show null when either or both slicers are not selected
BLANK()
)
In this example:
This DAX measure checks if both slicers are filtered (ISFILTERED function) and, if so, displays the sum of your values; otherwise, it displays BLANK().
You can adjust this DAX code based on your specific data model and column names. Remember to replace the placeholder table and column names with your actual table and column names.
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
In case there is still a problem, please feel free and explain your issue in detail, It will be my pleasure to assist you in any way I can.
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 |
---|---|
20 | |
18 | |
18 | |
18 | |
14 |
User | Count |
---|---|
40 | |
35 | |
23 | |
20 | |
20 |