Forum Discussion
Anonymous
9 years agoNot applicable
Merging two columns by criteria
Hi everyBI'ers Q: How do I merge two columns by the criteria that the values from column1 and colum2 is evaluated by it's number of digits? Example: I would like to merge the following two c...
- Anonymous9 years ago
HI Anonymous,
You can try to use below formula:if [Column1] >= 100000 then [Column1] else if [Column2] >= 100000 then [Column2] else null
In addition, you can also use Number.From function to convert result from mals's formula.
Regards,
Xiaoxin Sheng
Anonymous
9 years agoNot applicable
MalS Thanks for your answer, but then columns has to be converted to text, isn't it possible to do the same operation with number-columns?
Anonymous
9 years agoNot applicable
HI Anonymous,
You can try to use below formula:
if [Column1] >= 100000 then [Column1] else if [Column2] >= 100000 then [Column2] else null
In addition, you can also use Number.From function to convert result from mals's formula.
Regards,
Xiaoxin Sheng