So I have a block of more than one statement I want to run based on the condition of an IF statement. If count <2 then do these three statement, but if not do these four statements.... What is the syntax to create that "block"
Thanks
Solved! Go to Solution.
You can use a semi colon to string them together. Example I am stringing var1 and 2 together if true and if false I am stringing var3 and 4.
If(count <2, Set(var1, "A"); Set(var2, "B"), Set(var3, "C"); Set(var4, "D"))
You can use a semi colon to string them together. Example I am stringing var1 and 2 together if true and if false I am stringing var3 and 4.
If(count <2, Set(var1, "A"); Set(var2, "B"), Set(var3, "C"); Set(var4, "D"))
I figured so...thanks for the answer
Check out new user group experience and if you are a leader please create your group
Did you miss the call?? Check out the Power Apps Community Call here!
See the latest Power Apps innovations, updates, and demos from the Microsoft Business Applications Launch Event.
User | Count |
---|---|
273 | |
245 | |
83 | |
37 | |
34 |
User | Count |
---|---|
356 | |
247 | |
128 | |
73 | |
44 |