Forum Discussion
Delimiter with Direct Query
- Anonymous6 years ago
Hi cpereyra,
Here I updated my sample PBIX file , please check if the newly added measures can get the expected results you want.In addition, if it is possible to handle with it in data source , then load the split columns into Power BI Desktop?
Best Regards
Rena
Try this...
Column =
VAR A = IFERROR(FIND("~",'Table (4)'[Column1]),0)
VAR B = IFERROR(FIND("~",'Table (4)'[Column1],A+1),0)-1
RETURN IFERROR(MID('Table (4)'[Column1],A+1,B-A),'Table (4)'[Column1])
If it helps, mark it as a solution
Kudos are nice too
It does work but how would you go about additional delimiters on the same column.
Ex.
PEC~Insurances - ~Homeowner
Would need back three columns
1- PEC
2 - Insurances
3 - Homeowner
Anonymous VasTg amitchandak
- Anonymous6 years agoNot applicable
Hi cpereyra,
Here I updated my sample PBIX file , please check if the newly added measures can get the expected results you want.In addition, if it is possible to handle with it in data source , then load the split columns into Power BI Desktop?
Best Regards
Rena
- Adeel_Yousaf4 years agoFrequent Visitor
Your link is removed.