The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Dear community,
I need to calculate a tax column, which varies by year, and it is applied to a product.
Product | Year | Price |
A | 2020 | 20 |
B | 2021 | 21 |
A | 2021 | 22 |
A | 2022 | 23 |
The tax should be applied just to product A, and if the year is <2022, it will be 7% of the price; otherwise will be 4% of the price.
I have tried a calculated column:
Solved! Go to Solution.
@Anonymous ,
You can create this new column using Power Query:
if [Product] = "A" then
if [Year] < 2022 then [Price] * 0.07 else [Price] * 0.04
else null
Or this for a calculated column:
Tax_DAX = IF('Table'[Product] = "A", IF('Table'[Year] < 2022, 'Table'[Price] * 0.07, 'Table'[Price] * 0.04), BLANK())
@Anonymous ,
You can create this new column using Power Query:
if [Product] = "A" then
if [Year] < 2022 then [Price] * 0.07 else [Price] * 0.04
else null
Or this for a calculated column:
Tax_DAX = IF('Table'[Product] = "A", IF('Table'[Year] < 2022, 'Table'[Price] * 0.07, 'Table'[Price] * 0.04), BLANK())
User | Count |
---|---|
25 | |
12 | |
8 | |
8 | |
7 |
User | Count |
---|---|
27 | |
12 | |
12 | |
12 | |
6 |