Re: $$Excel-Macros$$ addition of 10% thru macro

2016-06-15 Thread GENIUS
That's great, thank you very much sir -- Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ https://www.facebook.com/discussexcel FORUM RULES 1) Use concise, accurate thread titles. Poor thread titles,

Re: $$Excel-Macros$$ addition of 10% thru macro

2016-06-15 Thread Paul Schreiner
Are you simply wanting to increase each value by 10% and replace the cell value with the new value? If so, you could use something like:Sub Increment_Values()     Dim ValIncr, CellVal         ValIncr = ActiveSheet.Range("H1").Value     ValIncr = 1 + ValIncr     For Each CellVal In Range("A1:F8")

$$Excel-Macros$$ addition of 10% thru macro

2016-06-14 Thread Izhar
is there a way if i want to add 10% of already numbers thru macro NOTE: keep in mind i need to do this thru the above way not any other way -- Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @