i had created an excel 2016 sheet that took 4 columns of data (week, meal time, meal name, food item) and transposed and grouped that data using power query to create a list of food items, by week (columns) and grouped by meal time/name as rows.
unfortunately, this was developed for a mac, where Excel for mac wont recognize power query or pivot tools and scripts
I'm trying to think if I could write VBA code to perform the same function:
1) Find unique week numbers (column a) and list each as column in result tab
2.) list meal time/meal names (column b and c, concatenated) as rows
3.) group food items (column d) into each week column and meal row.
Columns A-D are in a defined table (Table1), so I can use listobject class as my reference
Where would I start with this?
Thank you for your help
unfortunately, this was developed for a mac, where Excel for mac wont recognize power query or pivot tools and scripts
I'm trying to think if I could write VBA code to perform the same function:
1) Find unique week numbers (column a) and list each as column in result tab
2.) list meal time/meal names (column b and c, concatenated) as rows
3.) group food items (column d) into each week column and meal row.
Columns A-D are in a defined table (Table1), so I can use listobject class as my reference
Where would I start with this?
Thank you for your help