The way i got that table:
ShowColumns(AddColumns(Orders,"ordMonth",Month(OrderDate),"ordYear",Year(OrderDate)),"ordYear","ordMonth","OrderPrice")

The way i got that table:
ShowColumns(AddColumns(Orders,"ordMonth",Month(OrderDate),"ordYear",Year(OrderDate)),"ordYear","ordMonth","OrderPrice")
Hi @hoftom ,
Try this
AddColumns(
GroupBy(
ShowColumns(
AddColumns(
Orders,
"ordMonth",
Month(OrderDate),
"ordYear",
Year(OrderDate)
),
"ordYear",
"ordMonth",
"OrderPrice"
),
"ordYear",
"ordMonth"
"Data"
),
"TotalPrice",
Sum(
Data,
OrderPrice
)
)
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.
MVP (Business Applications) Visit my blog Practical Power Apps