Hello Community,
I am a Newbie to Power apps,
I was trying to create an app with 4 different screens(Screen1, Screen2, Screen3, Screen4) where each screen has different forms for filling the data.
In total, I have 14 forms in 4 screens but my issue is with the forms (NQ_form8, NQ_form9, NQ_form10) in screen 3.
Everything other form is saving the data into the SharePoint List but the forms in screen 3 are not saving data.
I have used a "varFormdata " variable for storing the data and calling it in the items property in all the forms submitting it at the end of the screen4.
I cant understand what is the issue with it. any kind of help or word around is highly appreciated.
I have also attached images for reference.
This is the image for the New Qualification button,
New Qulification Button formula
This is the Image of Screen 3
Screen 3
In this the Sample Columns 6-10 depend on Min For and Sample 1-5 columns.
if Sample 1-5 values are greater than or equal to Min force then the Visibility for Sample 6-10 is disabled, if they are not then sample 6-10 fields appear and if either of the sample batch satisfy the min force then pull test result is approved else rejected .
Here is the visibility and pull test formula
Visible: If(Value(S1.Text) >= Value(MFR.Text) &&
Value(S2.Text) >= Value(MFR.Text) &&
Value(S3.Text) >= Value(MFR.Text) &&
Value(S4.Text) >= Value(MFR.Text) &&
Value(S5.Text) >= Value(MFR.Text),
false,
true)
in the default property for pull test card.
Default: If(
And(
Value(S1.Text) >= Value(MFR.Text),
Value(S2.Text) >= Value(MFR.Text),
Value(S3.Text) >= Value(MFR.Text),
Value(S4.Text) >= Value(MFR.Text),
Value(S5.Text) >= Value(MFR.Text)
),
"Approved",
If(
And(
Value(S6.Text) >= Value(MFR.Text),
Value(S7.Text) >= Value(MFR.Text),
Value(S8.Text) >= Value(MFR.Text),
Value(S9.Text) >= Value(MFR.Text),
Value(S10.Text) >= Value(MFR.Text)
),
"Approved",
"Rejected"
)
)
and for the save button in the final screen this is the formula
final save button formula
but after hitting save this is the result in Sp list, i.e, no data form that particular forms

and again for other fields the data is there in place.

Kindly help me with this.
Thanks 🙂