Okay my PowerApps gurus that I have learned so much from………I am having a issue that should be an easy thing, but me and my learning curve just is not getting where I am making my mistake.
Here we go…I got a simple SP List with Three Columns (named as shown except Camera Number = Title). What I need to do in the PowerApp is populate the text field of the Source depending on the selection of the Camera from a dropdown.
I have set a varible and also set UpdateContext, but I am not getting the correct value in the textinput. Please help.
Camera Value Card:
DataField “Camera”
Default ThisItem.Camera
DisplayMode ` Parent.DisplayMode
DisplayName “Camera”
Update dd.Camera.Selected.Value
Camera Dropdown:
Default Parent.Default
DisplayMode Edit
Items ‘Camera.Source’
OnChange UpdateContext({varCamRec: ddCamera.Selected.Value + TxtSource})
Source Value Card:
DataField “Source”
Default ThisItem.Source
DisplayMode Parent.DisplayMode
DisplayName “Source”
Update TxtSource.Text
Source Text Input:
Default varCamRec
DisplayMode Edit
Mode SingleLine