Hi All,
I am using the below code to get my output. It is basically checking the values from a list of values provided by the user and then giving it a score(1,0). I don't want the score to be hardcoded and can I use another table to get the score (which can be changed by the user and I just have to hit refresh to change the table structure). I just want to show the values taken from another source and not hard-code it , can it be done ?
ScoreGeo = IF(
SUMX(Keyword_Geo,
FIND(
UPPER(Keyword_Geo[Geo]),
UPPER(Combined_Data[WWS Geo])
,,0
)
) > 0,
1,
0
)