Forum Discussion
WJ876400
Helper IV
7 years agoMerging Columns
Hi
I have two columns like below. The main data I want to use is from Column B, however when column B has a blank I want to use the data in the corrosponding cell in column A so I end up with column C. Is this possible, thanks in advance
| A | B | C |
| Green | Green | |
| Blue | Blue | |
| Red | Red | |
| Yellow | Yellow | |
| Pink | Pink | |
| Black | Black | |
| Purle | Purle | |
| Orange | Orange |
In Power Query this is a pretty simple if [column b] <> "" then [column b] else [column a], DAX would be similar
4 Replies
- jthomson
Solution Sage
In Power Query this is a pretty simple if [column b] <> "" then [column b] else [column a], DAX would be similar