Forum Discussion
smacsween
5 years agoFrequent Visitor
Conditional merge columns
i am trying to merge columns based on an IF statement and ISBLANK. If I have Country name in Table1, use that value, if not, use the Country value from Table2. I can't see how to do this, I have...
mahoneypat
5 years agoMicrosoft Employee
You said this is a measure, so I assume you are using it in a table visual. What is the relationhip between Table1 and Table2. You could try this instead, but will depend on the relatinship.
OfficeCombined =
IF (
isblank(MIN ( 'Table1'[Country] ) ),
MIN ( Table2[Country] ),
MIN ( 'Table1'[Country] )
)
Regards,
Pat