Forum Discussion
lkshck
4 years agoHelper III
New column summarize Values by Name
Hey,
I'm currently having a table with one Column which looks like the following:
| PORTAL:123456789 |
| PORTAL:876543 |
| PORTAL:86235872 |
| Test1 |
| Test2 |
| Test3 |
PORTAL:623856 |
My goal is to create second column which writes the Name of the first column to it but summarizing those which have PORTAL infront or cutting everything which is behind PORTAL. So second column should look like the following:
| PORTAL |
| PORTAL |
| PORTAL |
| Test1 |
| Test2 |
| Test3 |
| PORTAL |
you can try this
Column = VAR _check=SEARCH(":",'Table'[Column1],1,0) return if(_check=0,'Table'[Column1],LEFT('Table'[Column1],_check-1))