Forum Discussion
semicolon Country field
- 5 years ago
andyspa , You need to create custom column in power query
I tried , this is the custom column in power query before you split to divide the amount
= List.Count(Text.Split([Users],","))
andyspa , Split the data in power query into rows. Before that create a column like this in power query and divide your amount
Divide by= List.Count(Text.Split([Column]))+1
refer for split column https://www.youtube.com/watch?v=FyO9Vmhcfag
- andyspa5 years ago
Helper I
Hello amitchandak and thanks for your suggestion. I didn't know i could split clumns into rows! AWESOME!
Regarding the formula, I get the error "Token Eof expected"..
- amitchandak5 years ago
Super User
andyspa , You need to create custom column in power query
I tried , this is the custom column in power query before you split to divide the amount
= List.Count(Text.Split([Users],","))
- andyspa5 years ago
Helper I
thanks. so i created that custom column (what's "users" in brackets?). Then I split and then create another custom column with the division?