Forum Discussion
Find value between two tables and dates
Maybe it's because it's monday or something but I just can't get my head around a what I thought was a simple stuff but here I am, few hours later...
Problem:
I have two tables with no active relationship
First table is my fact table which holds all data related to punched hours
FactTable
| Date | Hours | EmployeeId |
| 29.12.2020 | 8 | A |
30.12.2020 | 8 | A |
31.12.2020 | 4 | A |
1.1.2021 | 4 | A |
2.1.2021 | 8 | A |
My second table has information on salary rates per employee with a given start date like so:
SalaryTable
| EmployeeId | SalaryFromDate | Rate |
| A | 1.1.2020 | 50 |
| A | 1.1.2021 | 100 |
| B | 1.1.2009 | 60 |
My desired result
Using Dax measure I want to calculate the cost for each hours that is actually punched in and worked.
I'm trying to use this for example
Rate_Hourly =
VAR _salaryfromdate =
SELECTEDVALUE ( SalaryTable[SalaryTableFromDate] )
RETURN
CALCULATE (
SUM ( SalaryTable[hourlySalaryTable] ),
FILTER (
FactTable,
FactTable[date] >= _salaryfromdate
&& FactTable[date] <= TODAY ()
)
)
But this just gives me sum of all Hour rates.
How can I make sure I find the correct Hour rate within the date range given from FactTable and compare to SalaryTable?
Kindest
5 Replies
- sevenhillsSuper User
I tried this and see if it works for you
No relationships created
Measure
Rate_Hourly = var _Rate = MAXX( FILTER( SalaryTable, SalaryTable[EmployeeID] = SELECTEDVALUE(FactTable[EmployeeID]) && SalaryTable[SalaryFromDate] <= SELECTEDVALUE(FactTable[Date])) , SalaryTable[Rate] ) return _RateFYI: I prefer to have a calculated column than measure if it is a large dataset
...
- YggdrasillResponsive Resident
sevenhills Thanks for the prompt reply and taking the time to help out!
I've successfully implemented the DAX code and it works. However it breaks at another granular level when I'm not looking at dates. See how the total does not sum up
Can I somehow make this work without having to use ISINSCOPE() or other similar functions?
Or should I just do as you mentioned and use a column?
Kind regards- sevenhillsSuper User
Please can you provide what is expected output in your top scenario (like a mockup)
Tough to visualize sometimes ...