I am not sure all information 100% correct. Some information getting from internet sites. Main theme of this blog is own reference....
Function Ceiling(n As Double) As Long If Not Int(n) = n Then Ceiling = Int(n) + 1 Else Ceiling = n End If End Function