hi @ecamar13
There are 3 steps in this formula:
Step 1
Add a column to the datasource (OppsAgain) and call this column "yourNewStatus" with a value Status.Value (SharePoint Column: Status)
AddColumns(
OppsAgain,
"yourNewStatus",
Status.Value //Status is your choice column
)
The output is having an additional column added your datasource called yourNewStatus with a value from SharePoint Status for the record assigned to it.
Step 2
Group the datasource by the column added and name the group "Statusses"
Step 3
Add a column to the table created by Group By, this is the new column: "Totals"
Please find the following:
"OppsAgain" what is this ? random table name ? -
The datasource/name of your SharePoint List
"yourNewStatus" What is this ? Sharepoint list name ? -
A column added to your datasource
"Status" Sharepoint column name -
Yes the name of the column in SharePoint
"Statuses" new column table ?
No this is the name of the column(s) grouped. i can see why you want to refer to it as a column as that is how it will be displayed, but technically see it as a grouped name rather column name.