Forum Discussion
Anonymous
3 years agoNot applicable
Help me to write the DAX formula using Filter Function to Link Tables
I have the four following table: Table 1: (Main Table) Date ID Full Time Equivalent 30/06/2023 100 30.0 30/06/2023 200 20.0 31/05/2023 100 30.0 31/05/2023 200 20.0 T...
- 3 years ago
Anonymous ,
FTE = CALCULATE ( SUM ( 'Table 1'[Full Time Equivalent] ), FILTER ( 'Table 4', 'Table 4'[Date] = SELECTEDVALUE ( 'Table 2'[Date Key] ) ) ) - 3 years ago
Anonymous , are you using Excel or PBI? Try this:
FTE = VAR dt = MAX ( 'Table 2'[Date Key] ) RETURN CALCULATE ( SUM ( 'Table 1'[Full Time Equivalent] ), FILTER ( 'Table 4', 'Table 4'[Date] = dt ) )
technolog
Super User
2 years agoI hope this message finds you well. I've noticed that this solution remain unresolved. If any of you have managed to find a resolution to the issue, I kindly request that you share your solution for the benefit of the entire community. Alternatively, if you're still facing challenges, please do let us know as well.
Your insights and updates will greatly assist others who might be encountering the same challenge.