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
i have 2 formulas inside my measure
old way = SUM(RevenueTable[Total])
this was the formula from beginning of my dataset until october 3 2022
so on october 3 2022 and forth,
new formula = SUMX(Revenuetable2,[QTTY] * [Amount])
so my measure is
total revenue =
it work fine on single selected date
but if i selected from september 26 to october 9,
it wont give me the sum of both
if selected october 3 and above, it gave me new correct:
if selected september 26 till october 2 give me old corrrect :
now if i select all, it gives me this:
as you see it wont give me the sum it just gives me the new formula is apllied
please help
Solved! Go to Solution.
@Anonymous , Try a measure like , Unsing filter add both
calculate(SUM(RevenueTable[Total]),Filter('Calendar Table','Calendar Table'[Date] < DATE(2022,10,3) )) +
calculate(SUMX(Revenuetable,[QTTY] * [Amount]),Filter('Calendar Table','Calendar Table'[Date] >= DATE(2022,10,3) ))
@Anonymous , Try a measure like , Unsing filter add both
calculate(SUM(RevenueTable[Total]),Filter('Calendar Table','Calendar Table'[Date] < DATE(2022,10,3) )) +
calculate(SUMX(Revenuetable,[QTTY] * [Amount]),Filter('Calendar Table','Calendar Table'[Date] >= DATE(2022,10,3) ))
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 |
---|---|
14 | |
10 | |
10 | |
9 | |
9 |
User | Count |
---|---|
20 | |
13 | |
12 | |
11 | |
8 |