Forum Discussion
majidsiddique52075
May 05, 2019Copper Contributor
Replace item AUTO if not match in invoice No
Hi All, i am working on a sheet on two set of data bases. first is main data and second is invoice data. both are extract from different system software for analysis. main data is perfect and compar...
majidsiddique52075
May 06, 2019Copper Contributor
Hi SergeiBaklan
Thank to reply.
is there any possibility to highlight mismatch item with conditional formatting?
Thanks.
SergeiBaklan
May 06, 2019Diamond Contributor
majidsiddique52075 , you may apply the rule with formula
=COUNTIF($F$3:$F$21,A3)=0
Please see attached
- majidsiddique52075May 06, 2019Copper Contributor
Thank boss, its working perfect, but i cannot apply vlookup, match or any other formula to count highlight cell. its also required for VBA coding. i really dont know VBA.
Thanks for the reply,
Thanks
- SergeiBaklanMay 06, 2019Diamond Contributor
majidsiddique52075 , to count them you may use
=SUMPRODUCT(--(COUNTIF($F$3:$F$21,$A$3:$A$21)=0))
or
=SUMPRODUCT(--NOT(ISNUMBER(MATCH($A$3:$A$21,$F$3:$F$21,0))))
- majidsiddique52075May 06, 2019Copper Contributor
its working perfect. thank boss,
if i insert manually color on the cell then formula is not working. is it for conditional formatting only?
do you have any other idea to count cell highlighted when i put manually color by theme color window, ( normal cell color )?
Thanks