Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Usage of FUZZ command.

Status
Not open for further replies.

kiranvenkat

Programmer
Dec 17, 2012
1
AP
Hi ,

I'm trying to use FUZZ command. Please find the below sample code.
If the numbers are 10 & 13 FUZZ is working and giving "A is equal to B" but for 10 & 16 it is giving "A is not equal to B" .

So i tested for some more combinations. It is is working for some and not working for others. Can anyone explain me why this variation in the outputs.

A = 10
B = 16
numeric Digits 2
Numeric Fuzz 1
If A = B
Then Say "A is equal to B"
Else Say "A is not equal to B"
 
A guess: '3' is being rounded down; '6' is being rounded up.

Frank Clarke
--America's source for adverse opinions since 1943.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top