Hello thanks you to the community for all the appsheet info much appreciated!
Currently I have an app with multiple tables. I want to be able to check from table A if table B has matching input data for example table A[Name] = table B[Name] and if it does I want the current column row to state true. I tried to compute this value from looking throuhg the community forum but its not working well…
UNIQUE(
IFS(
ISNOTBLANK([Name]),
SELECT(
Table B[Name],
([_THISROW].[Name] = [Name])
)
)
+ IFS(
ISNOTBLANK([Email]),
SELECT(
Table B[EMAIL],
([_THISROW].[Email] = [EMAIL])
)
)
+ IFS(
ISNOTBLANK([Phone]),
SELECT(
Table B[Phone #],
([_THISROW].[Phone] = [Phone #])
)
)
+ IFS(
ISNOTBLANK([Appointment Date]),
SELECT(
Table B[Appointment Date],
([_THISROW].[Appointment Date] = [Appointment Date])
)
)
)
Any advice would be appreciated on how I can make that happen!!