Hi All,
I need to automatically prepopulate the field from the combined list of columns, starting from the first row. instead of a single value, the field is with the entire list.
please assist.
INDEX(
(
LIST(
Select(Dipstick[Pump 1 Attendant],And([Date]>=[_Thisrow].[Date Start],[Date]<=[_Thisrow].[Date End])),
Select(Dipstick[Pump 2 Attendant],And([Date]>=[_Thisrow].[Date Start],[Date]<=[_Thisrow].[Date End])),
Select(Dipstick[Cashier],And([Date]>=[_Thisrow].[Date Start],[Date]<=[_Thisrow].[Date End])))
- LIST(Select(Salary[Name],And([Date Start]>=[_Thisrow].[Date Start],[Date End]<=[_Thisrow].[Date End])))),
1
)
thank you.