Hello all,
I'm completely new in PowerApps and I've thw following problem.
According to what I read, it should be possible to add more than 1 instruction in a block of instruction.
For example, I've the event 'OnSelect' and I'd like to initalize 2 variables like this (in my envirronement, the semicolon is used) :
Set (premierJour;1) ;
Set(deuxiemejour;2)
Unfortunately, this generates an error at the semicolon's place
the workarounds I found are :
concurrent
(
Set (premierJour;1) ;
Set(deuxiemejour;2)
)
or
Set (premierJour;1) &&
Set(deuxiemejour;2)
so, is it normal I can't just put 2 instructions separated by a ; (or , in your case) ? if yes, what is the best to use ; concurrent() or && ?
Thanks to all for your help