$$Excel-Macros$$ Insert picture in an excel's many sheets

2013-06-06 Thread Pravin Gunjal
Is it possible to insert the same picture in many sheets of an excel file. If so request to please provide the solution. Regards Pravin Gunjal. -- 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 @

RE: $$Excel-Macros$$ Want to add every third row or column!

2013-06-06 Thread Sandeep Chhajer
Please find the attached file. Thank you Regards Sandeep Kumar Chhajer. From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On Behalf Of VBA VABZ Sent: 04 June 2013 10:44 To: excel-macros@googlegroups.com Subject: Re: $$Excel-Macros$$ Want to add every third

Re: $$Excel-Macros$$ Re: Formula require

2013-06-06 Thread P.VIJAYKUMAR
Respected Eugene Bernard, The double negative is used to coerce, as we say, a non-number type into a number type. Since only a number (not text, boolean, error value, etc.) can follow a minus sign, one minus sign forces the coercion to a number. The other just reverses the sign change caused by

Re: $$Excel-Macros$$ Conditional Search Replace

2013-06-06 Thread xlstime
try below VBA code Sub conditionalreplace() Dim rng As Range For Each rng In Range(D1:D10) If rng.Value 0.8 Then rng = .80 End If Next End Sub . Enjoy Team XLS On Thu, Jun 6, 2013 at 11:18 AM, Amit Desai (MERU)

Re: $$Excel-Macros$$ Conditional Search Replace

2013-06-06 Thread Prafull Jadhav
Dear XLS, if we not declarer variable , will code run properly .? suppose ...we write code as per below. Sub conditionalreplace() For Each Range In Range(D1:D10) If Range.Value 0.8 Then Range = .80 End If Next End Sub if not ...Please

Re: $$Excel-Macros$$ Conditional Search Replace

2013-06-06 Thread Paul Schreiner
IF you do not utilized Option Explicit at the beginning of each module, then VBA will automatically declare a variable the first time it is used. So, yes, the macro should run. However, In my opinion, it is NEVER a good idea to create a variable that is the same name as one of the keywords used

Re: $$Excel-Macros$$ Conditional Search Replace

2013-06-06 Thread Prafull Jadhav
Dear Sir, Small Question... then Sir what is exact meaning and use of declare variable in below case? Thanks in Advance . Reg, Prafull Jadhav. On Thu, Jun 6, 2013 at 5:41 PM, Paul Schreiner schreiner_p...@att.netwrote: IF you do not utilized Option Explicit at the beginning of each module,

$$Excel-Macros$$ Help delete rows with dynamic worksheets

2013-06-06 Thread Jorge Marques
Hi guys, I have a file that has 4 worksheets A,B,C,D and eveyrone has 3 columns with Name, Age, Profession, and I want to delete the rows that have the column Age blank, I can do this with a static Macro fo check 4 columns, but sometimes I receive the file with only A worksheet or A B, so it

Re: $$Excel-Macros$$ Marge Data from Different workssheet.

2013-06-06 Thread Tariq Aziz
Dear Export Please some solve my problem. Tariq On 5 June 2013 10:14, Tariq Aziz tariqkh...@gmail.com wrote: Dear Vijay Kumar This is pirated software and we dont have the licence, I need the open source add-in. Tariq On 4 June 2013 15:55, P.VIJAYKUMAR vijay.4...@gmail.com wrote:

Re: $$Excel-Macros$$ Conditional Search Replace

2013-06-06 Thread Paul Schreiner
If I understand what you are asking, I would recommend something like: Sub conditionalreplace()    Dim Rng as Range       For Each Rng in Range(D1:D10)        If Rng.Value 0.8 Then             Rng.Value = .80         End If     Next End Sub   The Dim statement means to Dimension which

Re: $$Excel-Macros$$ Re: Formula require

2013-06-06 Thread Eugene Bernard
Thanks Mr Vijaykumar. Regards Eugene On Thu, Jun 6, 2013 at 12:34 PM, P.VIJAYKUMAR vijay.4...@gmail.com wrote: Respected Eugene Bernard, The double negative is used to coerce, as we say, a non-number type into a number type. Since only a number (not text, boolean, error value, etc.) can

Re: $$Excel-Macros$$ Help delete rows with dynamic worksheets

2013-06-06 Thread ashish koul
see if it helps Sub test() Dim wk As Worksheet Dim i As Long Application.ScreenUpdating = False Application.DisplayAlerts = False Application.Calculation = xlCalculationManual For Each wk In ThisWorkbook.Worksheets For i = wk.Range(a wk.Rows.Count).End(xlUp).Row To 2 Step -1 If

Re: $$Excel-Macros$$ Insert picture in an excel's many sheets

2013-06-06 Thread ashish koul
can u share the sample file On Thu, Jun 6, 2013 at 11:32 AM, Pravin Gunjal isk1...@gmail.com wrote: Is it possible to insert the same picture in many sheets of an excel file. If so request to please provide the solution. Regards Pravin Gunjal. -- Are you =EXP(E:RT) or =NOT(EXP(E:RT))

$$Excel-Macros$$ Direc client Requirement for BIS Help Desk Analyst 1 (329916) Harrisburg, PA F2F is required

2013-06-06 Thread sindhu amensys
Hi, Hope you are doing Great This is *sindhu* from *AMENSYS INC*.We are immediately looking for *BIS Help Desk Analyst *at *Harrisburg, PA * with one Of Our Direct clients. If You Are interested Or know someone who is looking for projects, please reply me the details ASAP to

$$Excel-Macros$$ Urgent need SAP FICO Need @ AZ

2013-06-06 Thread adam smith
*Apps Star * * ……GO for IT ,IT Works* * **Dear Associates,* *My name is **ADAM SMITH **Global Account Manager at APPS-STAR LLC* * * *Apps Star is a global About Apps-Star LLC * *IT consulting company with 1,000 consultants in America, Europe and Asia/Pacific, and approximately $1

$$Excel-Macros$$ Direct client requirement for PHP developer position in Richmond, VA

2013-06-06 Thread sindhu amensys
Dear Candidate, Our records shows that you are experienced IT professional. We have an urgent Requirement for below position. Please go through the requirement and if you comfortable with this positions revert back to with your updated Resume, contact details and expected rate. Role: VCE

Fwd: $$Excel-Macros$$ Insert picture in an excel's many sheets

2013-06-06 Thread Pravin Gunjal
Dear Mr Ashish The file is attached with picture/logo which is very simple. I want this picture/logo (or any other picture/logo) to be inserted in all the sheets at a time. Is it possible in excel? Thanks in advance. Regards Pravin Gunjal. -- Forwarded message -- From: ashish

Re: $$Excel-Macros$$ Conditional Search Replace

2013-06-06 Thread Prafull Jadhav
Dear Sir, I am in learning stage of Macro ...Please let me know . Can we use the below code for the same. For example sub change_value() Dim i As Integer For i = 1 To 7 If Cells(i, 4).Value 0.8 Then Cells(i, 4).Value = 0.8 End If Next i End Sub Thanks in Advance. On Thu, Jun 6, 2013