I want to find out the grand total of the rows data. If anyone can assist regarding the same . I have attached a screenshot below to make it easier to understand.
Solved! Go to Solution.
I'm assuming the grad total is for information purposes only... This is very straight forward in alteryx (assuming the values you are looking at are already numbers otherwise you'll need an extra step)
1) record ids.
2) transpose (record ids as key column use all columns except your total column).
2) summarize - group by record id - sum value.
voila
the learning videos on transpose/crosstab and summarize are key. Summarize is one of the most diverse tools in Alteryx... It's just fantastic.
that worked perfectly fine. Thank you . yes it is for reviewing purpose.
How to now retrieve the data in the actual format by crosstabbing. I am joinning by record ID but that gives me multiple rows of data.
O.k. - first you crosstab your original data (record ids are key columns), name is column, value is value and I use sum, but you can use whatever you want - there should only be one value for each entry. After crosstab you join with record id as the join column with the datastream from your summarize tool. summary column.