$$Excel-Macros$$ Re: Cell value distribution formula

2014-04-19 Thread Muddan Madhu
what are you expecting from this sheet ?? On Friday, April 11, 2014 6:18:15 PM UTC+5:30, satya prakash wrote: > > > -- 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/discussexc

$$Excel-Macros$$ Re: copy data from excel sheet and paste in website Automatically

2014-04-19 Thread Muddan Madhu
Hello Vinay, I can't access the website... its internal site.. which i can't access to source of the page. But your code will go like this or there another option... you can paste the source of page for each step. like if go to log on screen what's the source of the page(HTML code) paste i

$$Excel-Macros$$ Re: Inserting Copied cells multiple times

2014-04-15 Thread Muddan Madhu
Sub ReptRows() Dim I As Integer, X As Integer I = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).Row For X = I To 2 Step -1 ActiveSheet.Cells(X + 1, "A").Select ActiveCell.EntireRow.Resize(50).Insert ActiveCell.Offset(-1, 0).EntireRow.Resize(51).Select Selection.FillDown Next X End Su

Re: $$Excel-Macros$$ Re: Data-Import External Data-New web query

2014-04-09 Thread Muddan Madhu
wrote: > > Dear Muddan > > Thanks alot.its perfect. > Can we extract data with heading name & as per my selection cell point > where I select cell then data extract from that cell. > > Regards > Amar > > On Wed, Apr 9, 2014 at 8:17 AM, Muddan Madhu > &g

$$Excel-Macros$$ Re: Data-Import External Data-New web query

2014-04-08 Thread Muddan Madhu
Try this Option Explicit Sub GetDataFromWeb() Dim STR As String Dim IE As Object Set IE = CreateObject("InternetExplorer.Application") STR = "http://www.investing.com/indices/major-indices"; Dim I As Integer, X As Integer IE.Visible = True IE.Navigate STR While (IE.Busy Or IE.ReadyState <> 4)