Forum Discussion
AllanBerces
Post Prodigy
3 months agoIf Condiotion with blank
Hi and good day, can any one help me on my if condition
if the column 2 is equal to 0 then 0 else column 1
RESULT
Thank you
Final Column = IF('Table'[Column 2] = 0, 0, 'Table'[Column 1])Blank values in Column 2 are treated as 1 since they are not equal to 0.
2 Replies
- Kedar_Pande
Super User
Final Column = IF('Table'[Column 2] = 0, 0, 'Table'[Column 1])Blank values in Column 2 are treated as 1 since they are not equal to 0.
- AllanBerces
Post Prodigy
Hi Kedar_Pande thnak you work as i need