This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hello, I am trying to create a column that expresses whether something is a discount or not based on criteria within a table.
Below is the data set:
| BookingID | ExtraItemQty | ExtraItemExtendedCost |
| 25220696 | 12 | 900 |
| 25220883 | 7 | 525 |
| 25220692 | 4 | 300 |
| 25220876 | 24 | 1800 |
| 25220696 | 12 | -180 |
| 25220876 | 24 | -360 |
| 25220693 | 2 | 150 |
| 25220889 | 2 | 150 |
| 25220885 | 2 | 150 |
| 25220701 | 2 | 150 |
My desired output is as follows:
| BookingID | ExtraItemQty | ExtraItemExtendedCost | Type |
| 25220696 | 12 | 900 | Discount |
| 25220883 | 7 | 525 | Full Price |
| 25220692 | 4 | 300 | Full Price |
| 25220876 | 24 | 1800 | Discount |
| 25220696 | 12 | -180 | Discount |
| 25220876 | 24 | -360 | Discount |
| 25220693 | 2 | 150 | Full Price |
| 25220889 | 2 | 150 | Full Price |
| 25220885 | 2 | 150 | Full Price |
| 25220701 | 2 | 150 | Full Price |
So any ID with a negative ExtraItemExtendedCost would be considered a discount, and if there is not negative value for the ID at some point it is considered Full Price.
Thank you
Solved! Go to Solution.
New column =
var _cnt = countx(filter(Table, Table[BookingID] = earlier([BookingID]) && [ExtraItemExtendedCost] <0), [BookingID] )
return
If(isblank(_cnt) , "Full Price", "Discount")
New column =
var _cnt = countx(filter(Table, Table[BookingID] = earlier([BookingID]) && [ExtraItemExtendedCost] <0), [BookingID] )
return
If(isblank(_cnt) , "Full Price", "Discount")
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 25 | |
| 23 | |
| 19 | |
| 17 | |
| 14 |
| User | Count |
|---|---|
| 25 | |
| 23 | |
| 20 | |
| 20 | |
| 19 |