Forum Discussion
Custom Formula IF > 50
- 10 years ago
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
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.
- v-qiuyu-msft10 years ago
Community Support
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- android110 years ago
Post Patron
Hi Qiuyun Yu,
Thank you very much.