Hi,
I have a field in my Power Apps form (call it Field 2) that is a dropdown field based on the entry of another field (call it Field 1). I also have a lookup field (call it Field 3) the is based on the entry in Field 2.
The issue I'm having is that when I make any changes to an item, or add a new item to my list, Field 1 and Field 3 update fine, but Field 2 does not.
Here are the details:
Field 1 (Items): Choices(List.Field 1)
Field 2 (Items): Filter(Table, Title = DataCardValue1.Selected.Value)
Field 3 (Default): Coalesce(LookUp(Table, Entry1 = DataCardValue2.Selected.Entry1, Entry2), ThisItem.Field 3)
---
List is the Item List I am modifying
Table is my Lookup Table with Entries 1 and 2
DataCardValue1 is the data card from Field 1 and DataCardValue2 is the data card from Field 2
---
This was working previously - I am unable to figure out what changed that is now causing it not to work.
Thanks for your help!