Forum Discussion
MCFNeil
8 years agoQrew Captain
Are they date fields? what type of 'data' is being compared?
The formula would most likely be a formula-checkbox.
Call it "Data Doesn't Match";
If([Parent Lookup Field]=[Child Data Field], false, true)
But I'm sure you need to account for when either data point is blank (because if one or the other is blank, then they wont match. And you don't need those on the report, or you might).
If([Parent Lookup Field]="", false,
If([Child Data Field]="", false,
If([Parent Lookup Field]=[Child Data Field], false, true)))
The formula would most likely be a formula-checkbox.
Call it "Data Doesn't Match";
If([Parent Lookup Field]=[Child Data Field], false, true)
But I'm sure you need to account for when either data point is blank (because if one or the other is blank, then they wont match. And you don't need those on the report, or you might).
If([Parent Lookup Field]="", false,
If([Child Data Field]="", false,
If([Parent Lookup Field]=[Child Data Field], false, true)))