Forum Discussion
IEG
4 years agoFrequent Visitor
DAX If statement
Hi, I have two data sets, I want to compare 2 different column values and bring the higher value. i have done this with measure but I want to create a new column which contains higher values of t...
- 4 years ago
Hi, IEG ;
You could create a new column by following:
Column = var _mman=MAX([MANQty]) var _mshp=MAX([ShpQty]) return IF(_mman<_mshp,[ShpQty],[MANQty])The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
4 years agoSuper User
IEG , if they are from two tables, you need to copy one of them to another table and then compare.
refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8
If these can not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.