Forum Discussion
Greater Than for Prioritisation system
- Anonymous1 year ago
Hi, NSKD
Thanks for Ashish_Mathur's reply. You can try to use following dax to achieve your need.
In Report View:
Choose a table name and right-click, click the New Column button, then input the dax to create a new column.Column = SWITCH( TRUE(), 'Table'[Score]>=75,"High", 'Table'[Score]>=50,"Medium", "low" )
In Power Query: Click Custom Column and input the following M Languageif [Score] >= 75 then "High" else if [Score] >= 50 then "Medium" else "Low"Best Regards,
Yang
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
Hi See below,
Noting this is my first time so please include all steps I need to do.
In the vertical panel on the left hand side, click on Table view and click on the New column button in the ribbon. Paste my formula in the formula bar there.