Forum Discussion
Devsh
3 years agoNew Member
IF(ISBLANK)
I want to create a new column to retrieve blank cells from column [CC] in the table. I tried using =If(ISblank(Table Name[CC]),1,0) but it does not work. I also tried changing the data type from any to txt but still not giving desired output. Please help.
1 Reply
- Jihwan_KimSuper User
Hi,
I assume you want to create a measure and put it into the visualization.
Please try something like below whether it suits your requirement.
Empty measure: = IF ( ISBLANK ( MAX ( 'Open Order Report Data'[CC] ) ), 1, 0 )