March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
i want to insert a new custom column if the vales contained in column Count Scheduled Hrs are > 50.
I'm using =[Count Scheduled Hrs]>50 in a custom column formula but the results are FALSE.
Solved! Go to Solution.
Hi android1,
In your scenario, you can create a new column based on the DAX function like below:
= IF([Count Scheduled Hrs]>50,[Count Scheduled Hrs],BLANK())
Please refer to the screenshot below:
Reference:
If you have any question, please feel free to ask.
Best regards,
Qiuyun Yu
@DSimma is correct. You need to use the IF portion and you need to specify the return values. You could return something as simple as "Yes" or "No". After that, you can add that as a filter or slicer to your reports so that values only display when greater than or less than 50.
Proud to be a Super User!
You need to us an if statement
Like
=if([Count Scheduled Hrs]>50,">50","<50")
So that if greater then 50 it displays ">50" and if not it displays "<50"
Thanks. I would like the custom column to actually contain the values of [Count Scheduled Hrs]. So if [Count Scheduled Hrs]
contains 40,55,60, then custom column should be 55 & 60.
Hi android1,
In your scenario, you can create a new column based on the DAX function like below:
= IF([Count Scheduled Hrs]>50,[Count Scheduled Hrs],BLANK())
Please refer to the screenshot below:
Reference:
If you have any question, please feel free to ask.
Best regards,
Qiuyun Yu
Hi Qiuyun Yu,
Thank you very much.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
167 | |
117 | |
63 | |
57 | |
50 |