Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello Community - I would like to do this in the query editor, but have the DAX reference as well for learning.
We have Orders. These orders begin with a prefix, like HS, AR, CO, etc.
The HS and AR orders, below $40k value, are part of a particular sales channel. I would like the custom column to return the value "QuickShip" if the Order prefix begins with either HS or AR, and if the Order value is equal or less than $40k.
Solved! Go to Solution.
Hi @Anonymous
Here's a sample PBIX file with the following data and code.
Based on this sample data
This will do the job
= if (Text.Start([Order],2) = "HS" or Text.Start([Order],2) = "AR")
and [Shipped Price] <= 40000
then "QuickShip"
else null
Producing this output
Regards
Phil
If I answered your question please mark my post as the solution.
If my answer helped solve your problem, give it a kudos by clicking on the Thumbs Up.
Proud to be a Super User!
Thanks Phil - This was awesome and just what I needed!
Hi @Anonymous
Here's a sample PBIX file with the following data and code.
Based on this sample data
This will do the job
= if (Text.Start([Order],2) = "HS" or Text.Start([Order],2) = "AR")
and [Shipped Price] <= 40000
then "QuickShip"
else null
Producing this output
Regards
Phil
If I answered your question please mark my post as the solution.
If my answer helped solve your problem, give it a kudos by clicking on the Thumbs Up.
Proud to be a Super User!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 101 | |
| 76 | |
| 56 | |
| 51 | |
| 46 |