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.
Hello everyone,
PBIX file : https://1drv.ms/u/s!Ag9tIyk2ofNRjlBFygNBL3s9VG2N?e=qoIeBc
Excel file: https://1drv.ms/x/s!Ag9tIyk2ofNRjk9-uND6F2ZLZgaZ?e=oAWQzt
I have tax table and expense table
to calculate tax, i need to do tax_rate * total_expense
the tax rate changes on october 1 so look:
on spetmebr 30 :
on october 1 :
when i selectseptemebr 30 and october 1 together, i dont get the correct sum of tax:
since 430.08 + 390 = 820.08 not 866.88
have can i fix?
Solved! Go to Solution.
Hi,
I am not sure if I understood your datamodel correctly, but please check the below measure.
Taxes =
SUMX (
SUMMARIZE ( Expense_Table, 'Calendar'[Date] ),
CALCULATE ( SUM ( Expense_Table[Total] ) )
* CALCULATE ( MAX ( New_Tax_Rate_Table[Percentage] ) )
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Schedule a short Teams meeting to discuss your question
Hi,
I am not sure if I understood your datamodel correctly, but please check the below measure.
Taxes =
SUMX (
SUMMARIZE ( Expense_Table, 'Calendar'[Date] ),
CALCULATE ( SUM ( Expense_Table[Total] ) )
* CALCULATE ( MAX ( New_Tax_Rate_Table[Percentage] ) )
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Schedule a short Teams meeting to discuss your question
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 |