Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Solved! Go to Solution.
These look like definitions for calculated columns rather than measures.
I think I'd try something like this:
SALARY during period =
VAR periodStart =
MAX (
MIN ( 'Salary History'[Effective Date] ),
MIN ( 'Date'[Date] )
)
VAR periodEnd =
MIN (
MAX ( 'Salary History'[Effective Date] ),
MAX ( 'Date'[Date] )
)
VAR daysInPeriod =
CALCULATE (
COUNTROWS ( 'Date' ),
DATESBETWEEN ( 'Date'[Date], periodStart, periodEnd ),
'Date'[Is WeekDay] = TRUE
)
RETURN
daysInPeriod * [Daily Salary]
These look like definitions for calculated columns rather than measures.
I think I'd try something like this:
SALARY during period =
VAR periodStart =
MAX (
MIN ( 'Salary History'[Effective Date] ),
MIN ( 'Date'[Date] )
)
VAR periodEnd =
MIN (
MAX ( 'Salary History'[Effective Date] ),
MAX ( 'Date'[Date] )
)
VAR daysInPeriod =
CALCULATE (
COUNTROWS ( 'Date' ),
DATESBETWEEN ( 'Date'[Date], periodStart, periodEnd ),
'Date'[Is WeekDay] = TRUE
)
RETURN
daysInPeriod * [Daily Salary]
@Anonymous , if you want to use that you need to use max.
I think you need move that to filter clause
IF(max('Salary History'[Effective Date])<=LASTDATE('Date'[Date]), IF(max('Salary History'[Effective Date])>=FIRSTDATE('Date'[Date]), 'Salary History'[Effective Date], FIRSTDATE('Date'[Date])))
VAR periodEnd = IF(OR(ISBLANK(max('Salary History'[End Date])), max('Salary History'[End Date])>=FIRSTDATE('Date'[Date])), IF(ISBLANK(max('Salary History'[End Date])), LASTDATE('Date'[Date]), IF(max('Salary History'[End Date])<=LASTDATE('Date'[Date]),max('Salary History'[End Date]), LASTDATE('Date'[Date]))))
Example filter , check current employee
Thanks for replying. Unfortunately I get the same performance issue as when I tried SELECTEDVALUE. I think I need to find a different way to filter the dates.
User | Count |
---|---|
13 | |
8 | |
8 | |
7 | |
5 |
User | Count |
---|---|
23 | |
15 | |
15 | |
10 | |
7 |