Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hey,
I have the following problem. I have two tables:
Salden:
| Personalnr. | Name | Date | GLZ |
| 18984 | Laura | 01.01.2022 | 65,68 |
| 18984 | Laura | 31.12.2022 | 37,75 |
and the table
Leavings:
| PersonalNr. | Name | Days on "leave" (GLZ) |
| 18984 | Laura | 123,5 |
What I would like to do is:
65,68 (=january value) - 123,5 = -57,42 - 37,75 (=december value) = 94,99 (this is the number that should be displayed in the end. Hopefully someone can help me.
this was my first try:
Solved! Go to Solution.
Hi @Laura1996 ,
Here are the steps you can follow:
1. Create calculated column.
Column =
var _januarey=
SUMX(
FILTER(ALL(Salden),'Salden'[Name]=EARLIER('Salden'[Name])&&'Salden'[Date]=DATE(2022,1,1)),[GLZ])
var _december=
SUMX( FILTER(ALL(Salden),'Salden'[Name]=EARLIER('Salden'[Name])&&'Salden'[Date]=DATE(2022,12,31)),[GLZ])
var _value=
SUMX(
FILTER(ALL(Leavings),
'Leavings'[Name]=EARLIER('Salden'[Name])),'Leavings'[Days on "leave" (GLZ)])
return
IF(
'Salden'[Date]=DATE(2022,12,31),
_januarey-_value-_december,BLANK())
2. Result:
Additionally, in calculating the data you provided, I noticed a small discrepancy that I would like to share with you. About 65.68-123.5-37.75=-95.57.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Laura1996 ,
Here are the steps you can follow:
1. Create calculated column.
Column =
var _januarey=
SUMX(
FILTER(ALL(Salden),'Salden'[Name]=EARLIER('Salden'[Name])&&'Salden'[Date]=DATE(2022,1,1)),[GLZ])
var _december=
SUMX( FILTER(ALL(Salden),'Salden'[Name]=EARLIER('Salden'[Name])&&'Salden'[Date]=DATE(2022,12,31)),[GLZ])
var _value=
SUMX(
FILTER(ALL(Leavings),
'Leavings'[Name]=EARLIER('Salden'[Name])),'Leavings'[Days on "leave" (GLZ)])
return
IF(
'Salden'[Date]=DATE(2022,12,31),
_januarey-_value-_december,BLANK())
2. Result:
Additionally, in calculating the data you provided, I noticed a small discrepancy that I would like to share with you. About 65.68-123.5-37.75=-95.57.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Thank you so much 🙂 the solution works like a charm.
About the discrepancy: I wrapped the formula into "
@Laura1996 Not quite sure I am following but you could put PersonalNr from your first table into a table visual and have a measure like this:
Spalte Measure =
VAR __January = SUMX( FILTER( 'Salden', [Date] = "01.01.2022", [GLZ])
VAR __December = SUMX( FILTER( 'Salden', [Date] = "31.12.2022", [GLZ])
VAR __Leave = SUMX( 'Leavings', [Days on "leave" (GLZ)] )
VAR __Result = __January - __Leave - __December
RETURN
__Result
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 20 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 32 | |
| 31 | |
| 18 | |
| 12 | |
| 11 |