I am trying to build a dependent drop-down based on the other dropdown selection.
For example, my first selection will be "Game Title" drop-down and second one will be "Game Content" drop-down based on the "Game Title"
Game Title drop down (Items) = Distinct('Product Details',Game).Result
Game Content drop down (Items) = Filter('Product Details', Game.Value = DataCardValue1.Selected.Result)
But I am having issue as below:
"Incompatible types for comparison. These types can't be compared: Text, Record."
Would anyone can help to resolve this issue?