Can anyone helpme on this please

hi,

i am extracting 2 values using relative scrape both are integer ,

I need to compare them to check whether they are equal or not how do that

var1=10
var2= 10 both are of double type

@manoj2500

cdbl(var1)=cdbl(var2)

1 Like

Use the below code, @manoj2500
var2.Tostring.Trim.Equals(var1.Tostring) or var2.Equals(var1) put this in message box.

3 Likes