Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
in TextBox I Have tow percentage Value ( A% & B% )
the different between the tow percentage value is very small ( less or more than 0.00001 )
now i want to create a logic if statement that show :
if ( {the different between the tow percentage value is very small ( less or more than 0.00001 ) }
then show me Latter 'X'
Else Show me Letter 'Y' )
can I have some help please..
May be this:
If(fab(A% - B%) < 0.00001, 'X', 'Y')