Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Good morning! I have a page with a bunch of cards on it. The cards are bringing in a measure called No Read Perc
No Read Perc = 1 - DIVIDE([No Read Count], [Total Number of Pallets],0)
When I filter the page, if there is no data for those cards, it's bringing the value in as 100%.... I am looking to see if I can make that default a "No Data".
Ex below) I have a filter on RFID 16, so all of the other cards should read "No Data" instead of 100%.
Thanks in advance for your help
Solved! Go to Solution.
Hello @nataliesmiy1357 ,
Adjusted Measure for "No Read Perc" like below
No Read Perc =
IF (ISBLANK([No Read Count]) || ISBLANK([Total Number of Pallets]),
BLANK(),
1 - DIVIDE([No Read Count], [Total Number of Pallets], 0))
Alternatively, you can try out the below measure as well to use text "No Data" in card.
No Read Perc =
IF (ISBLANK([No Read Count]) || ISBLANK([Total Number of Pallets]),
"No Data",
1 - DIVIDE([No Read Count], [Total Number of Pallets], 0))
If you find this helpful , please mark it as solution which will be helpful for others and Your Kudos/Likes 👍 are much appreciated!
Thank You
Dharmendar S
Hello @nataliesmiy1357 ,
Adjusted Measure for "No Read Perc" like below
No Read Perc =
IF (ISBLANK([No Read Count]) || ISBLANK([Total Number of Pallets]),
BLANK(),
1 - DIVIDE([No Read Count], [Total Number of Pallets], 0))
Alternatively, you can try out the below measure as well to use text "No Data" in card.
No Read Perc =
IF (ISBLANK([No Read Count]) || ISBLANK([Total Number of Pallets]),
"No Data",
1 - DIVIDE([No Read Count], [Total Number of Pallets], 0))
If you find this helpful , please mark it as solution which will be helpful for others and Your Kudos/Likes 👍 are much appreciated!
Thank You
Dharmendar S
Hi @dharmendars007 , i think the return value if condition satisfies should be "No data" instead of blank
No Read Perc =
IF (ISBLANK([No Read Count]) || ISBLANK([Total Number of Pallets]),
"No data",
1 - DIVIDE([No Read Count], [Total Number of Pallets], 0))
Yes We can try out the same also to pass text as "No Data"
User | Count |
---|---|
116 | |
73 | |
60 | |
48 | |
48 |
User | Count |
---|---|
171 | |
122 | |
60 | |
59 | |
56 |