Is it possible to have the arrow marks as shown in the screenshot below? Like, it should not be a fixed one, it should be dynamic. If yes how this is achievable?
@aishabhy05, Write the formula for the text format line item with emojis, using IF and ELSE statements for different emojis.
IF Salary < 50000 THEN "🔻" & "Low Salary" ELSE "⬆️" & " High Salary"
Try this formula:
If (Percent Line Item * 100) < 0 THEN "🔻" & TEXT(Percent Line Item * 100) & "%" ELSE "⬆️" & TEXT(Percent Line Item * 100) & "%"
To improve on this, create a list for each Salary Band and put the text there; then use a list formatted line item for display, not text. Also, there's no need to be doing the text concatenation here…
Thanks @MarkWarren and @Dikshant .
Is it it possible to have % and the text line item together (with symbols)? output : 🔻-1 % … ⬆️ 5% @Dikshant @MarkWarren
You have to convert the number format line item into text using TEXT function and then do the concatenation
Example:
If Percent Line Item < 0 THEN "🔻" & TEXT(Percent Line Item) ELSE "⬆️" & TEXT(Percent Line Item)
Thanks @Dikshant I already tried, however I'm not getting % it is showing me something like this .. I want the exact % to be captured.. like ⬈ 0.1% ….
I have always difficulty identifying line items that are NOT referenced by any other line items/modules but used in actions or dashboard filters. During model cleanup, we often encounter line items that appear unreferenced but may still be actively used as filters in dashboards or within actions. These usages are not…
I need to create an Anaplan workflow where a task is completed at the subregion level, but the approval happens at the higher region level. The current Anaplan workflow functionality seems to require that the approval task is on the same page and at the same hierarchical level as the completed task. My specific question…
Hi Anaplan Community, I'm facing an issue while importing data (text details) into a module that has two dimensions: "Unique Line ID" and "Organization x Site". The source file is based on a numbered list. It includes text-formatted columns (line items) that contain the names of the "Unique Line ID" and "Organization x…