Advertisement
YasserKhalil2019

T4210_Divide By 100 Using Evaluate Trick

Oct 26th, 2019
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. https://excel-egy.com/forum/t4210
  2. ---------------------------------
  3.  
  4. Sub Divide_By_100_Using_Evaluate_Trick()
  5. With Range("A2:A" & Cells(Rows.Count, 1).End(xlUp).Row)
  6. .Value = Evaluate("IFERROR(IF({1}," & .Address & "/100),"""")")
  7. End With
  8. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement