This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
i have a table like below
| emp code | monthlycost | start date | end date | |
| 1 | 10000 | 01-apr-21 | 31-mar-22 | |
| 1 | 15000 | 01-apr-22 | ||
| 2 | 20000 | 01-apr-21 | 31-mar-22 |
i need to show this as month wise total cost like below
| apr-21 | 30000(sum of 10000+20000) |
| may-21 | 30000 |
| june-21 | 30000 |
| apr-22 | 15000 (then it will show me cost where start date is after 1apr22 and e |
Solved! Go to Solution.
Hi,
I am not sure how your datamodel looks like, but I tried to create a sample pbix file like below.
I suggest having a Dim-Calendar table.
Please check the below picture and the attached pbix file.
Salary sum measure: =
SUMX (
FILTER (
Data,
Data[start date] <= MAX ( 'Calendar'[Date] )
&& OR ( Data[end date] >= MIN ( 'Calendar'[Date] ), Data[end date] = BLANK () )
),
Data[monthlycost]
)
thank for your help. you are expert.
it's working now
also i have to crack i more logic i have two table like below
1. Live employee Master table
| empcode | BU | function |
| E100 | AGRI | HR |
| E101 | ECE | R&D |
| E102 | AGRI | Fin |
| E103 | AGRI | HR |
2. Transfer table
| empcode | AttributeTypeDescription | NewAttributeDesc | OLDAttributeDesc | EffectiveDate |
| E100 | BU | AGRI | ECE | 01-Apr-22 |
| E101 | Function | R&D | Fin | 5-May-22 |
i have already created calender table
need to create data like if slicer is BU is AGRI and Fun is HR
| Month | headcount |
| feb-22 | 2 |
| mar-22 | 2 |
| apr-22 | 3 |
| may-22 | 3 |
| june-22 | 3 |
| and so on | 3 |
if slicer is BU is ECE and Fun is R&D
| Month | headcount |
| feb-22 | 0 |
| mar-22 | 0 |
| apr-22 | 0 |
| may-22 | 1 |
| june-22 | 1 |
| and so on | 1 |
pls help
Hi,
I am not sure how your datamodel looks like, but I tried to create a sample pbix file like below.
I suggest having a Dim-Calendar table.
Please check the below picture and the attached pbix file.
Salary sum measure: =
SUMX (
FILTER (
Data,
Data[start date] <= MAX ( 'Calendar'[Date] )
&& OR ( Data[end date] >= MIN ( 'Calendar'[Date] ), Data[end date] = BLANK () )
),
Data[monthlycost]
)
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 23 | |
| 22 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 61 | |
| 35 | |
| 28 | |
| 22 | |
| 21 |