Hi @KevinRDynasoft ,
I assume this is based on a person with different categories in the pay. You would approach it something like this
AddColumns(
GroupBy(
Filter(
YourListName,
Text(YourDateField,ShortDate) = Text(YourDatePicker.SelectedDate,ShortDate)
),
"YourPersonField",
"OtherData",
),
"Gross Pay",
Sum(
OtherData,
GrossPayField
),
"Adjustments",
Sum(
OtherData,
AdjustmentField
),
"Deductions",
Sum(
OtherData,
DeductionField
),
"Taxes Withheld",
Sum(
OtherData,
TaxWithheldField
),
"Net Pay",
Sum(
OtherData,
NetPayField
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.