I want to add an excel formula as a text string in business objects.
I have three columns that I want to read as an excel formula so once it is exported, the individual would just change the columns to General and then hit F2 and enter for the formula to work.
Yes, it’s possible. Just add ="=the formula" into the column you want to use for the formula remembering to include the double quotes and the =.
However, this only works while the column layout remains the same - so if somebody adds an additional column to your output or reorders the columns, the formula may well break.
I have used this in the past, but it’s not something I do very often - and only on reports that are only used by me not by other users.
OK, try without the first = the one outside the double quotes.
Is there a reason you don’t do the calculation within BO? You would have to stack the concatenations two by two, so the first one would start off (adding each object in turn)
concatenation(O2, concatenation( the object corresponding to W2,(concatenation( the object corresponding to Y2, the object corresponding to Z2))) etc
That would mean any change to the output layout won’t affect the result.