I'm trying to put together a user defined function that will allow excel functions to work over a range rather than just one cell. Example would be =isnumber(value) that function will not work across a range of cells so to use it to check a range I would need to repeat it for each cell in the range.
Has anybody tried putting together something along the lines of =RangeFunct(range, function,[boolean])? This would do something along the lines of loop through each cell in the range into the existing function and stop at the boolean that doesn't match the one selected. Any help on setting this code up would be appreciated.