How make fungtion char(10) like that spreadheet on apppsheet

I see on the spreadsheet menu there is a chart(10) function, where this function functions as an enter line down,

how do i make this function in appsheet ?

I do this in a spreadsheet with this formula:
=CONCATENATE(โ€œCustomer โ€œ;โ€";C2;"โ€;" yth : โ€œ;CHAR(10);โ€œYour STBโ€™s remaining active period has expired : โ€œ;J2;โ€œDaysโ€;CHAR(10);โ€ Active up to : โ€œ;โ€";TEXT(H2;โ€œd mmmm yyyyโ€);"โ€;CHAR(10);โ€----------------- ------------";CHAR(10);โ€œImmediately purchase a voucherโ€;CHAR(10);โ€œFor the next active period, Thank youโ€;CHAR(10);;CHAR(10 );โ€œPLEASE VISIONโ€)

and the result is like this:

Dear DARWIN UMAR customers:
The remaining active period of your STB is 5 days
Active until: January 2, 2022

Immediately make a voucher purchase
for the next active period, Thank you

VISION Charm

Solved Solved
0 3 1,064
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

AppSheet has n equivalent to the CHAR() function. The best you can do is insert literal line breaks:

CONCATENATE("Customer ";"*";C2;"*";" yth : ";"
";"Your STB's remaining active period has expired : ";J2;"Days";"
";" Active up to : ";"*";TEXT(H2;"d mmmm yyyy");"*";"
";"----------------- ------------";"
";"Immediately purchase a voucher";"
";"For the next active period, Thank you";"
";;"
";"PLEASE VISION")

View solution in original post

3 REPLIES 3

Hey ADAJALAN,

This article should be helpful in explaining the CONCATENATE function in AppSheet.

Link: Using CONCATENATE(), Ampersand, and text expressions in templates | AppSheet Help Center

Have a good one!
Cale

Steve
Platinum 4
Platinum 4

AppSheet has n equivalent to the CHAR() function. The best you can do is insert literal line breaks:

CONCATENATE("Customer ";"*";C2;"*";" yth : ";"
";"Your STB's remaining active period has expired : ";J2;"Days";"
";" Active up to : ";"*";TEXT(H2;"d mmmm yyyy");"*";"
";"----------------- ------------";"
";"Immediately purchase a voucher";"
";"For the next active period, Thank you";"
";;"
";"PLEASE VISION")

thanks @Steve

Top Labels in this Space