Hello EDNA - some GURU help would be apperciated. looking to convert a working DAX calculated column to Power Query. looks like I need this before an append query.
here’s the WORKING Dax Code:
Rate2 =
MAXX (
FILTER (
EquipRates,
EquipRates[EquipType] = Data[Name / EquipType]
&& Data[Tdate] >= EquipRates[DateStart]
&& Data[Tdate] <= EquipRates[DateEnd]
),
EquipRates[Rate]
)
Thank you in advance,
Frankee