Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

Formula if for empty values

Topic Labels: Formulas
Solved
Jump to Solution
1206 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Nacho_Gonzalez
4 - Data Explorer
4 - Data Explorer

Hi
I have one column called genres 1 and another column called genres 2
I want to add another column that returns me the value of genre 1 when it isn’t blank and returns me the column genre 2 when the column genre 1 is blank
I know I have to use the If function, but I dont know how to apply to this case
Can you provide me some help?
Thanks in advance!

1 Solution

Accepted Solutions
Zollie
10 - Mercury
10 - Mercury

IF( {genres 1}, {genres 1}, {genres 2} )

translation: IF( genre 1 is defined, return genre 1, otherwise return genre 2 )

See Solution in Thread

1 Reply 1
Zollie
10 - Mercury
10 - Mercury

IF( {genres 1}, {genres 1}, {genres 2} )

translation: IF( genre 1 is defined, return genre 1, otherwise return genre 2 )