Hi everyone.
I have two data sources, GameLists and TTDDefects. All my data pulls from GameList and any formdata submitted goes to TTDDefects. I am trying to shade in an item in a Gallery once the GameID number appears on both lists. I have tried "If(ThisItem.GameID = TTDDefects.GameID,Red,Blue)" but get an error saying a number and table cannot be compared.
Thanks in advance!
Chris
Solved! Go to Solution.
@ckserra ,
Try this approach:
If(
IsBlank(LookUp(TTDDefects,GameID=ThisItem.GameID)),
Red,
Blue
)
Depends on number of items in Gallery, this approach can be a little bit slow.
Hope it helps !
@ckserra ,
Try this approach:
If(
IsBlank(LookUp(TTDDefects,GameID=ThisItem.GameID)),
Red,
Blue
)
Depends on number of items in Gallery, this approach can be a little bit slow.
Hope it helps !
@gabibalaban Is there a way to have it do what you suggested and still be able to highlight if selected? I use this "If(ThisItem.IsSelected , RGBA(233,150,122,1))" in another instance and it works well.
Thanks again!
Chris
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
187 | |
52 | |
51 | |
36 | |
32 |
User | Count |
---|---|
282 | |
97 | |
89 | |
82 | |
77 |