Forum Discussion
Supplemental Spreadsheet Use
- 9 years ago
Based on your dscription, you need to check if the current JobNumber exist on another table or not, right?
If that is the case, you can use lookupvalue function to check if this value exist on that table or not.
IsProject = IF(ISBLANK(LOOKUPVALUE(ProjectJobs[JobNumber ],ProjectJobs[JobNumber ],JobSummary[JobNumber ])),"Project","Not Project")
Reference
https://msdn.microsoft.com/en-us/library/gg492170.aspx?f=255&MSPPError=-2147217396Regards,
Charlie Liao
Based on your dscription, you need to check if the current JobNumber exist on another table or not, right?
If that is the case, you can use lookupvalue function to check if this value exist on that table or not.
IsProject = IF(ISBLANK(LOOKUPVALUE(ProjectJobs[JobNumber ],ProjectJobs[JobNumber ],JobSummary[JobNumber ])),"Project","Not Project")
Reference
https://msdn.microsoft.com/en-us/library/gg492170.aspx?f=255&MSPPError=-2147217396
Regards,
Charlie Liao