Forum Discussion
x2kibail
7 years agoHelper I
Conditional Column: Can't use Conditional Column Builder
I'm a beginner when it comes to query building, so all help is appreciated. I need to create a column(3) that looks at column(1) and if it contains a value (a date), then it will look at the next...
- 7 years ago
Hi x2kibail,
Try this one. Please also refer to the snapshot below.
Column = IF ( ISBLANK ( [Column1] ), BLANK (), IF ( NOT ISBLANK ( [Column1] ) && ISBLANK ( [Column2] ), "Unresolved", IF ( NOT ISBLANK ( [Column1] ) && NOT ISBLANK ( [Column2] ), "Resolved", "Unknown" ) ) )
Best Regards,
Dale
v-jiascu-msft
7 years agoMicrosoft Employee
Hi x2kibail,
Try this one. Please also refer to the snapshot below.
Column = IF ( ISBLANK ( [Column1] ), BLANK (), IF ( NOT ISBLANK ( [Column1] ) && ISBLANK ( [Column2] ), "Unresolved", IF ( NOT ISBLANK ( [Column1] ) && NOT ISBLANK ( [Column2] ), "Resolved", "Unknown" ) ) )
Best Regards,
Dale
x2kibail
7 years agoHelper I
I think that did it! Thanks
