Compare two files column values using awk

Judi # cat File1  
judi /export/home 76  
judi /usr 83  
judi #  
judi # cat File2  
judi /export/home 79  
judi /usr 82  
judi #  

if COLUMN3 of File2 is greater that COLUMN3 of File1, then print File2's lines

juid /export/home 79

There are not 3 columns in your examples. Do you mean the last column, column #2? Or is judi part of the file?

If judi is part of the file, try:

awk '{v=$3} getline<f>0 && $3>v' f=File2 File1