How to reply a TRUE/False via VBA
Function Correct(Salary,Tax)
if Tax = (.1 * Salary ) then
Correct = True
else
Correct = False
end if
End Function
"FARAZ QURESHI" wrote:
How to develop a simple UDF like:
=Correct(Salary,Tax)
so as to return a TRUE if the argument Tax = Salary * 10%?
Thanx!
--
Best Regards,
FARAZ A. QURESHI
|