Forum Discussion
Anonymous
4 years agoNot applicable
DAX Measure
I have a table like this I wan't to show total in card for rent. And currently the rent column data type is in text. so I'm unable to create measure for this. Is there any way to create mea...
- 4 years ago
Hi, Anonymous
Please try the following methods.
Value = IF([Rent]="NULL",Blank(),[Rent])Is this the output you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-zhangti
4 years agoCommunity Support
Hi, Anonymous
Please try the following methods.
Value = IF([Rent]="NULL",Blank(),[Rent])
Is this the output you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.