Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. 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 | |
11 | |
10 | |
10 | |
10 |
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
8 |