I was working on something a bit more convoluted earlier, where user @etaf really took the time to explain/give guidance, which i really appreciated - but I pivoted and will be using something a bit simpler. I am curious about the following:
I would like to utilize Column L (abbreviated) and have it sort how many times each occurs - then create a 2 column table where it has the abbreviated in column A / times it occurred in column B. So if V2N occurred 5 times I just want to see V2N | 5 - not five rows of V2N. I will subsequently want to sort this data out into 4 separate provincial tables as well so we can isolate province down from all areas. I have fumbled with some formulas to get pieces of what I want but do not know how to combine it all into one.
I would like to utilize Column L (abbreviated) and have it sort how many times each occurs - then create a 2 column table where it has the abbreviated in column A / times it occurred in column B. So if V2N occurred 5 times I just want to see V2N | 5 - not five rows of V2N. I will subsequently want to sort this data out into 4 separate provincial tables as well so we can isolate province down from all areas. I have fumbled with some formulas to get pieces of what I want but do not know how to combine it all into one.
Cell Formulas | ||
---|---|---|
Range | Formula | |
L2:L145 | L2 | =LEFT([@[Postal Code]],3) |
M2:M145 | M2 | =IF(LEFT(L2,1)="R","MB",IF(LEFT(L2,1)="S","SK",IF(LEFT(L2,1)="T","AB",IF(LEFT(L2,1)="V","BC","")))) |
N2:N145 | N2 | =VLOOKUP(L2, FranchiseeBaseline!$A$2:$F$500, 6) |