Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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())
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
19 | |
14 | |
13 | |
11 | |
8 |