A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Well after MANY hours of research and trying countless different things, I finally figured it out.
The cell format for the date in the parameter table (and Excel's presentation of that date to Power Query) was not compatible with the query I was trying to perform with MySQL.
I hope someone might benefit from my post some day...
Here's my working version:
let
Start = Text.From(fnGetParameter("WeekBegin")),
End = Text.From(fnGetParameter("WeekEnd")),
Source = Odbc.Query("dsn=RCT Development", "SELECT wo.id, wo.last, wo.servicelocation, resit.resourcesched, resit.resourcehours FROM workorders wo INNER JOIN (SELECT * FROM resourceitems) resit WHERE wonumber = wo.id AND (resourcesched BETWEEN '"&Start&"' AND '"&End&"') ORDER BY wo.servicelocation"),
#"Grouped Rows" = Table.Group(Source, {"servicelocation"}, {{"Total Hours", each List.Sum([resourcehours]), type number}})
in
#"Grouped Rows"