Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Note- report date column is like only last two date for each month per year is present there , and last date of each month is in GBP and second last date is in EUR
For example - report date value currency
30-jan-2020 100 EUR
31-jan-2020 200 GBP
28-feb-2020 400 EUR
29-feb-2020 900 GBP
.....
30-dec-2020 1500 EUR
31-dec-2020 1900 GBP
30-jan-2021 2200
Hi @Vishalsurve7 ,
Whether your problem has been resolved? If no, could you please provide your expected result base on your provided sample data?
For example - report date value currency30-jan-2020 100 EUR
31-jan-2020 200 GBP
28-feb-2020 400 EUR
29-feb-2020 900 GBP
.....
30-dec-2020 1500 EUR
31-dec-2020 1900 GBP
30-jan-2021 2200
Best Regards
Hi,
Share data in a format that can be pasted in an MS Excel file and show the expected result.
i suppose first , you should convert your values to one currency . create a cluclated column for this
you can convert GBP to euro or vise versa.
now , you can use this new column for the measure to caluclate the sum .
from my understanding, you want to calculate the sum(values) , for all april , before the month-year selected from a slicer,
so if you select 2023-07 , thus you want to calculate the sum(values) for 2023-4, 2022-04, 2021-04 ,... .
if that is the case , use the following measure :
measure =
var mdate = max(tbl_name[date_col_name])a
var ds_date =
filter(
calculatetable(
values(tbl_name[date_col_name]),
removefilters(tbl_name[date_col_name]),
tbl_name[date_col_name] <= mdate
),
year(table_name[date_col_name]) <= year(mdate ) && month(table_name[date_col_name]) = 4
)
return
calculate (
sum(tbl_name[value_col_name]) ,
removefilters( tbl_name[date_col_name]) ,
ds_date
)
NB : replace the table_name and column names with the respective names from your model .
let me know if this helps .
If my answer helped sort things out for you, i would appreciate a thumbs up 👍 and mark it as the solution ✅
It makes a difference and might help someone else too. Thanks for spreading the good vibes! 🤠
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 22 | |
| 21 | |
| 20 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 50 | |
| 37 | |
| 29 | |
| 24 |