Hello,
I have two unrelated tables. In Table A I have a date column and I could like to add a calculated colum which sums up Work Hours in Table B, depending on a condition.
For each row in Table A, I would like to compare the date in Table A and check if it is between two dates in Table B. I would like this to iterate through all the rows in Table B and only sum up the hours where this condition is true.
I tried this, but it doesn't seem to work:
Any suggestions or help would be much appreciated.
Thanks!
Solved! Go to Solution.
Hi @SEunson
you may try
Hours =
VAR CurrentDate = TableA[Date]
RETURN
SUMX (
'Table B',
IF (
TableB[Start Date] < CurrentDate
&& TableB[Finish Date] > CurrentDate,
TableB[Work Hours]
)
)
Hi @tamerj1
Thanks for the response. I think this works. I'll just do some testing and will "Accept as Solution" if all looks ok.
Hi @SEunson
you may try
Hours =
VAR CurrentDate = TableA[Date]
RETURN
SUMX (
'Table B',
IF (
TableB[Start Date] < CurrentDate
&& TableB[Finish Date] > CurrentDate,
TableB[Work Hours]
)
)
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
97 | |
76 | |
42 | |
30 | |
30 |
User | Count |
---|---|
134 | |
95 | |
78 | |
47 | |
39 |