Forum Discussion

Yggdrasill's avatar
Yggdrasill
Responsive Resident
4 years ago

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

DateHoursEmployeeId
29.12.20208A

30.12.2020

8A

31.12.2020

4A

1.1.2021

4A

2.1.2021

8A


My second table has information on salary rates per employee with a given start date like so:

SalaryTable

EmployeeIdSalaryFromDateRate
A1.1.202050
A1.1.2021100
B1.1.200960

 

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

  • 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 _Rate

     

    FYI: I prefer to have a calculated column than measure if it is a large dataset

     

    ... 

    • Yggdrasill's avatar
      Yggdrasill
      Responsive 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

      • sevenhills's avatar
        sevenhills
        Super User

        Please can you provide what is expected output in your top scenario (like a mockup)

         

        Tough to visualize sometimes ...