I have dropdown hardcoded with the values with Q1 , Q2, Q3 in the power apps drop down
In the SharePoint I have Agile and sigma and gamma have values 0,1,2 for all the (Q1 , Q2, Q3)
for more understanding refer the images attached
Now, In the power apps based on Job code selected the agile sigma and gamma should show the values correspondingly
if i select the Job Code Q1 Agile gamma and sigma should show 1,2,0 and so on.
Please help me with this.
Thank You.
Thanks a million, It worked !!!
Thanks again for the quick replies and helping the community grow🙏
You need to change sharepoint
cname column values: q1,q2,q3
columnnames: Agile sigma gamma
that should be your design
Hi @developerAJ , It should Show 1,2,2
Sorry My bad!
and Also instead of hardcoding values as Q1,Q2,Q3 in the dropdown is there a way to pull them from the Sp List?
if i select the Job Code Q1 Agile gamma and sigma should show 1,2,0 or 1,2,2
The formula you would use for the "Agile" text input control would look like this:
Switch(
cboJobCode.Selected.Value,
"Q1",
LookUp(SharePointList, c_name="Agile").Q1,
"Q2",
LookUp(SharePointList, c_name="Agile").Q2,
"Q3",
LookUp(SharePointList, c_name="Agile").Q3
)
For sigma and gamma, you would adapt the above the formula to reference sigma or gamma.
WarrenBelz
146,524
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,906
Most Valuable Professional