- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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 the two columns.
Here is an example, If ManQty > ShpQty then it will bring ManQty to the new column else it should bring ShpQty to the new column
Thank you all
Regards
IEG
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Thank you, that worked
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@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.

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
11-05-2024 08:15 AM | |||
07-08-2024 06:09 AM | |||
12-18-2024 06:11 PM | |||
Anonymous
| 05-24-2024 10:28 AM | ||
03-21-2024 07:26 AM |
User | Count |
---|---|
140 | |
110 | |
81 | |
60 | |
46 |