$$Excel-Macros$$ Creating macro for formatting all cells to accounting format

2014-05-30 Thread Kof Bar
Hi, I would like to create a macro that will format all cells in a worksheet to accounting format: _(* #,##0.00_);_(* (#,##0.00);_(* -??_);_(@_) except cells conatinig dates. Thanks, Kof. -- 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) !

Re: $$Excel-Macros$$ Creating macro for formatting all cells to accounting format

2014-05-30 Thread Anil Gawli
Dear Daniel, Pl share a workbook with us. Warm Regards, Gawli Anil On Fri, May 30, 2014 at 1:32 PM, Kof Bar danielki...@gmail.com wrote: Hi, I would like to create a macro that will format all cells in a worksheet to accounting format: _(* #,##0.00_);_(* (#,##0.00);_(* -??_);_(@_)

$$Excel-Macros$$ Re: Creating macro for formatting all cells to accounting format

2014-05-30 Thread Kof Bar
I recorded a macro, and this is my code, but i don't know how to change cells containing dates to dates format: Sub AccFormat() ' ' AccFormat macro ' Format Cells as accounting, except date cells. ' ' shortcut: Ctrlþ+Shift+A ' Cells.Select Selection.NumberFormat = _(* #,##0.00_);_(*

$$Excel-Macros$$ Re: Creating macro for formatting all cells to accounting format

2014-05-30 Thread Daniel
I also tried to write: FinalRow = Cells(Rows.Count, 1).End(xlUp).Row For i = 1 To finalrow If IsDate = True Then Cells.NumberFormat = dd/mm/ End If Next i but i get an error: Argument not optional. On Friday, May 30, 2014 12:07:47 PM UTC+3, Kof Bar wrote: I

Re: $$Excel-Macros$$ Re: Creating macro for formatting all cells to accounting format

2014-05-30 Thread Abhishek Jain
Try this: Private Sub test() Dim myrng As Range Set myrng = ActiveSheet.UsedRange For Each cell In myrng If IsDate(cell.Value) = True Then cell.NumberFormat = dd/mm/ Else cell.NumberFormat = _(* #,##0.00_);_(* (#,##0.00);_(* -??_);_(@_) End If Next cell End Sub HTH/Abhishek

Re: $$Excel-Macros$$ Chart related issue

2014-05-30 Thread amar takale
Dear vaibhav can we make this type of chart? On Fri, May 30, 2014 at 10:38 AM, amar takale amartak...@gmail.com wrote: Dear Experts I required curve type of chart,can we make this type chart.pls create chart with sample data.I use excel 2003. Regards Amar -- Are you =EXP(E:RT) or

Re: $$Excel-Macros$$ Re: Copy Workbooks to respective folders according to the names of folder in the workbook name

2014-05-30 Thread Nasir Khan
Hello, I am getting a #VALUE error in the Destination when I click the List Files button I have taken screenshot of Evaluate Formula screen for Pre and Post Error. Pre screenshot shows the Evaluate Formula just before the #Value error pops up which is shown in the Post Screenshot See attached

$$Excel-Macros$$ Updating data set based on current date

2014-05-30 Thread Matt Edwards
I would like to make cells under a row of several consecutive dates update to the value of a specifically referenced cell automatically whenever the spreadsheet is opened. Ideally, I am trying to plug in a dollar value into one cell on a semi-regular, but not daily basis and on a separate page

$$Excel-Macros$$ Urgent required QA Automation Engineer - Minneapolis, MN

2014-05-30 Thread Gary .
*Please respond to gurjant.si...@damcosoft.com gurjant.si...@damcosoft.com* *Position: QA Automation Engineer (Web Services)Location: Minneapolis, MNDuration: 6+ Months* Visa: USC/GC/EAD only JD: • Should have hands-on experience in Web Services and UI automation testing. • Experience in

$$Excel-Macros$$ Urgent required QA Engineer - Minneapolis, MN

2014-05-30 Thread Gary .
Please respond to gurjant.si...@damcosoft.com *Position: QA * *Automation Engineer (Web Services)Location: Minneapolis, MNDuration: 6+ Months* JD: • Should have hands-on experience in Web Services and UI automation testing. • Experience in SOAPUI or IBM Green Hat and QTP is a must. •

Re: $$Excel-Macros$$ Re: Creating macro for formatting all cells to accounting format

2014-05-30 Thread Daniel
Thanks, it work wonderfully! :) bless you. Daniel. On Friday, May 30, 2014 9:46:29 AM UTC, Abhi wrote: Try this: Private Sub test() Dim myrng As Range Set myrng = ActiveSheet.UsedRange For Each cell In myrng If IsDate(cell.Value) = True Then cell.NumberFormat = dd/mm/

Re: $$Excel-Macros$$ Large Model Question

2014-05-30 Thread hari kumar
Hi , It would be better to give a try of importing and working in access or any other databases for calculation and reporting. Thanks Regards Hari Kumar Our strength grows from our weakness. On May 19, 2014 3:28 AM, Dima semant...@gmail.com wrote: Hello! I have a few excel model files of

$$Excel-Macros$$ New to Macros- Question

2014-05-30 Thread Vanessa Zarate
can you have a macro run that repeats patterns from a web browser to excel? -- 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,

$$Excel-Macros$$ Over 33,554 rows problem

2014-05-30 Thread Bill Q
Hi, I am using Excel 2010. I have a macro web query that downloads various information. It works fine. No issue there. The only issue that I have is that it will stop if it encounters more than 33 or 34 thousand rows of information. I have unchecked the box in advanced options that will not

$$Excel-Macros$$ Worksheet Consolidation

2014-05-30 Thread Bill Q
Hi, I am looking for a macro that would: - Copy all the information from the current active worksheet that I am in from cell A1 until it encounters the first blank in column in A into a worksheet already named as MAIN that is within the same workbook. It will be thousands of lines. - Before

Re: $$Excel-Macros$$ Re: Copy Workbooks to respective folders according to the names of folder in the workbook name

2014-05-30 Thread Vaibhav Joshi
Hi You will get value for files stored in main folder. e.g. here C:\Test\Macro\. Since we intended to transfer only files from sub folders. HTH On Fri, May 30, 2014 at 8:29 PM, Nasir Khan nasirkhan.du...@gmail.com wrote: Hello, I am getting a #VALUE error in the Destination when I click

Re: $$Excel-Macros$$ New to Macros- Question

2014-05-30 Thread Vaibhav Joshi
HI Vanessa What you mean by pattern..share an example file. Cheers!! On Sat, May 31, 2014 at 12:13 AM, Vanessa Zarate alettertovane...@gmail.com wrote: can you have a macro run that repeats patterns from a web browser to excel? -- Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do