Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I am using power table widget, for some years, data is not available. instead of showing 0.00, i want to show "Data is not available". how to do?
i ahve created a column, before creating new column i converted the Amount into text. it works, but shows numbers like 3.547934879496. however i needed only two decimal placed
New_Column = if(or(Sheet1[Amount]="0", isblank(Sheet1[Amount])), "NA", Sheet1[Amount])
select the measure and make the change here
Regards
Amine Jerbi
If I answered your question, please mark this thread as accepted
and you can follow me on
My Website, LinkedIn and Facebook
create a new measure
if( OR( [ratio] = 0 , ISBLANK([ratio])) , "Data Not Available" , [ratio])
ratio filed is a numeric field, so its not accepting string "Data Not Available".
Can you please show me the measure you made?
first i converted numeric filed to text, which shows numeric values like 3.1246984664785.
new_col = if(or(sheet1[amount]="0", isblank(sheet[amount])), "na", sheet[amount])
this create a new string column with many decimal places
you need to creat a measure for this sheet1[amount],
Amount = SUM(sheet1[amount]), change its format like in the image above and then replace into your measure new_col
Regards
Amine Jerbi
If I answered your question, please mark this thread as accepted
and you can follow me on
My Website, LinkedIn and Facebook
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 38 | |
| 37 | |
| 28 | |
| 28 |
| User | Count |
|---|---|
| 124 | |
| 89 | |
| 73 | |
| 66 | |
| 65 |