Forum Discussion
Anonymous
9 years agoNot applicable
Excel Formula to PowerBI
Hello Dears, a short question: I was trying to use the following formula but PowerBI doesn't accept it: Column = IF(AND(LEN(TRIM([Hilfsmittelnummer]))>=7;ISNUMBER(LEFT([Hilfsmittelnummer];2)...
Anonymous
9 years agoNot applicable
If i try to measure the if clause with istext(true) then blank() everything is dropped:
i guess the problem is, there are dots between the numbers i was out for (example 23.02.02.2003 or 08.03.01.1). Those stay without the dots when i switch to whole number but i lose the first 0 like in my second example.
Now i was trying to do so:
but now i get the error " if result is a variant-typ, it can not be used for defined calculated columns".
if(isnumber(left([Hilfsmittelnummer];2));[Hilfsmittelnummer];if(istext([Hilfsmittelnummer]);blank()))
Anonymous
9 years agoNot applicable
i changed my way of solving the problem and took this formula. looking for the dot on third point and so on... :D works better that way since i can't solve the other formula problems.
if(mid([Hilfsmittelnummer];3;1)=".";left([Hilfsmittelnummer];2);blank())
thank you all for the help! :smileyhappy: