Please take it easy on me. I just started with Programming in Power Apps. I'm currently getting "Can't convert this data type. Power Apps can't convert this Text to Table"
I have two SharePoint list in my app. 'PPA Metric Admins' and 'MRM Notes Master'. 'MRM Notes Master'.MetricName is a single text column while 'PPA Metric Admins'.Metrics is a multiple text column. I'm trying to say when user().Email is true or found, filter 'MRM Notes Master' to just show the metrics that match in 'PPA Metrics Admins'.Metrics. On line 11 I'm getting that error message in the subject.
What should I do here?
How can I get better and programing this language?
If(
LookUp(Filter('PPA Metric Admins', Title = "_Admin"), User().Email in 'UserName/Email'.Email, true),
Filter(
'MRM Notes Master',
Active.Value = "Yes")
,
If(
LookUp('PPA Metric Admins', User().Email in 'UserName/Email'.Email, true),
Filter('MRM Notes Master',
Active.Value = "Yes",
MetricName in ForAll('PPA Metric Admins', Metrics)
)
)