Hi Team, I hope you are doing well and covid free 🙂
I am building a power apps App with a datasource in SP list, is a simple form that gets data and register data to the list of SPs.
but I need a formula that allows me to get the data from another column when the user using the app is in the list.
I have the following list of data in SP:
Datasource: PagosBDF
Name Email Cost
Jaime jaime.mtz07@.... 40
jose jose.mtz07@...... 80
Pedro pedro.mt07@.... 120
when the user jose.mtz07@.... is using the app I want to obtain in a TextInput the value of the Cost column (80), If the user who is using the application is Jaime.mtz07@... I want to obtain the value of the cost column (40).
I was using this formula Value(LookUp(PagosBDF, User().Email in PagosBDF.Email, Cost) but I only get the first value of the entire SP list, can you help me?