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
- 3 months ago
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.
Kedar_Pande
Super User
3 months ago
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
3 months agoHi Kedar_Pande thnak you work as i need