G
Guest
OK, I'm sure this should be really simple, but I can't find the function I
need to use so could you experts point me in the right direction.
My form has 6 text boxes to enter his scores into (decimal scores to 2 dp).
Hit the 'calculate' button, and the total of the top 4 scores is displayed
in the result box.
Problem is... How do I do this in VB?
In Excel, it's no problem. Excel has the 'Large' function, so this excel
command will take 6 results and churm out the total of the top 4:
=LARGE(A1:A6,1)+LARGE(A1:A6,2)+LARGE(A1:A6,3)+LARGE(A1:A6,4)
Anyone know the equivilant function?
need to use so could you experts point me in the right direction.
My form has 6 text boxes to enter his scores into (decimal scores to 2 dp).
Hit the 'calculate' button, and the total of the top 4 scores is displayed
in the result box.
Problem is... How do I do this in VB?
In Excel, it's no problem. Excel has the 'Large' function, so this excel
command will take 6 results and churm out the total of the top 4:
=LARGE(A1:A6,1)+LARGE(A1:A6,2)+LARGE(A1:A6,3)+LARGE(A1:A6,4)
Anyone know the equivilant function?
Here's the code: