Line Break Issues with Displaying Variables in a Note

1. What is the issue? Please be detailed.
I want to display several variables in a note similar to what is explained here. When pasted into a single cell of the label column, this code displays properly in 4 lines as shown in this screenshot

Prop Priority (4 Highest): ${calc_prop_priority_disp}
Newly Propagated: ${calc_new_prop_alive_count} ${calc_new_prop_alive_count_status}
Nursery not new: ${calc_nursery_alive_count} ${calc_nursery_alive_count_status}
Transplanted Alive: ${calc_transplanted_alive_count}  ${calc_transplanted_alive_count_status}

ScreenshotAbove

However, I would like to reverse the order to show the variables first followed by a colon with the string description coming afterward. For reference, each line has two variables, one is a count and the other a status. The count is an integer and the status is a colored circle emoji. When reversing the order, it automatically puts line breaks after the second variable and therefore displays everything weird and in 7 lines like this:


INCORRECT

Am I missing something basic here?

2. What steps can we take to reproduce this issue?

3. What have you tried to fix the issue?
All of these show up identically like the INCORRECT screenshot above:

One line using <br/> for line breaks

${calc_prop_priority_disp}:Prop Priority (4 Highest) <br/> ${calc_new_prop_alive_count} ${calc_new_prop_alive_count_status} :Newly Propagated<br/> ${calc_nursery_alive_count_status} ${calc_nursery_alive_count}: Nursery not new<br/> ${calc_transplanted_alive_count_status} ${calc_transplanted_alive_count}:Transplanted Alive

Multiple Lines with <br/>

${calc_prop_priority_disp}:Prop Priority (4 Highest) <br/>
${calc_new_prop_alive_count} ${calc_new_prop_alive_count_status} :Newly Propagated<br/>
${calc_nursery_alive_count_status} ${calc_nursery_alive_count}: Nursery not new<br/>
${calc_transplanted_alive_count_status} ${calc_transplanted_alive_count}:Transplanted Alive

Multiple Lines w/o <br/>

${calc_prop_priority_disp}:Prop Priority (4 Highest)
${calc_new_prop_alive_count} ${calc_new_prop_alive_count_status} :Newly Propagated
${calc_nursery_alive_count_status} ${calc_nursery_alive_count}: Nursery not new
${calc_transplanted_alive_count_status} ${calc_transplanted_alive_count}:Transplanted Alive

4. Upload any forms or screenshots you can share publicly below.

Ciao @Tyler_Depke,

I tried the method w/o <br> tags and only using the trick to break lines in excel Alt+Enter or Option+Enter and the form rendered just fine (in the your desired order - Variable then descriptive label).

I am suspecting the issue might be how your are sourcing emojis, they seem to be pulled from other variables i.e.:${calc_nursery_alive_count_status}. Perhaps try testing without emoji or hardcode them in the label and see if that hints where the problem is coming from.

summary_label_2025.xlsx (11.3 KB)

Best regards,

Jules R