Announcements
This site is in read only until July 22 as we migrate to a new platform; refer to this community post for more details.

Iteration and Loop Expressions Is there some...

Colin1
New Member

Iteration and Loop Expressions

Is there someway to build and use an expression for iteration/looping please?

For example something programatically like a statement for:

FOR 1 to 100 DO WHILE (condition = true) or DO UNTIL (condition = true)

etc.

0 8 2,138
8 REPLIES 8

Not directly, but would you please explain your user case little more… so it would be easier for community users to find out the answer, thanks.

Nope.

Start expressions can kind of be used as loops. Only usable in workflows.

help.appsheet.com - Template Start Expressions Template Start Expressions help.appsheet.com

Colin1
New Member

@Aleksi_Alkio I have a need to concatenate a text where I am looking for a list of authors who are working on a document from a table of assigned documents.

For example:

KeyID Full Name

Document_Name 1

Selma Lane

Proposal 2

Abram Waller

Proposal 3

Concepcion Collier

Proposal 4

Freda Crane

Proposal 5

Hilda Mathews

Proposal 6

Micah Meza

Proposal 7

Selma Lane

Report 8

Concepcion Collier

Report 9

Freda Crane

Report

What I want is to put in a text string all those who are authors on the Report, i.e:

Selma Lane, Concepcion Collier, and Freda Crane

How can I do this please?

Okay… this is not the Loop case. You can do that with the formula TEXT(SELECT(TableName[Full Name],[Document_Name]=“Report”))

Colin1
New Member

@Aleksi_Alkio Well, I’ll be… It works! Thanks!

I did try to see if there is any online help for TEXT(), but there is none I can currently see:

help.appsheet.com - Search results for: text

nor in:

Text Expressions https://help.appsheet.com/expressions/expression-types/text-expressions

Column Value Expressions https://help.appsheet.com/expressions/expression-types/column-value-expressions

Other Expressions https://help.appsheet.com/expressions/expression-types/other-expressions

Do you have some other possible link that explains how TEXT() works please?

Search results for: text help.appsheet.com

That’s true, TEXT() seems to be missing from the documentation. We will fix that. Thanks for this!

CONCATENATE() would also work in place of TEXT().

Top Labels in this Space