Hello, I have built an Apps in the regular, online PowerApps, but due to licensing must now rebuild it in PowerApps for Teams, which is proving incredibly frustrating, as there seems to be a good deal that does not work the same way. One instance I've run into is removing rows from my DataVerse table. This code has always worked fine, but now it is not. Can someone please advise how to go about removing *if* rows works in the Teams variation?
Many thanks,
//DELETES JOB IF IT ALREADY EXISTS
ForAll(forCastdates,
RemoveIf(
Operations_Shift_Schedules,
crb06_sql_keycolumn = NameIndexTextBox)
)
;
ForAll(forCastdates,
RemoveIf(
Operations_Shift_Schedules,
crb06_sql_jobkeycolumn = JobIndexTextBox,
crb06_jobabbr <> "V" && crb06_jobabbr <> "T" && crb06_jobabbr <> "S" && crb06_jobabbr <> "B" && crb06_jobabbr <> "O" && crb06_jobabbr <> "SE")
)
;