Re: Fwd: $$Excel-Macros$$ Send Bulk Mail Macro

2015-07-29 Thread De Premor

Hi Nilkanth,

PFA, hope it solve your requirement

Rgds,
[dp]

On 29/07/2015 17:01, Nilkanth Raval wrote:


Hi All,

Can anyone help me in below mail???

Thanks,
Nilkanth Raval

-- Forwarded message --
From: Nilkanth Raval nilkanth.ra...@gmail.com 
mailto:nilkanth.ra...@gmail.com

Date: Jul 28, 2015 3:59 PM
Subject: $$Excel-Macros$$ Send Bulk Mail Macro
To: excel-macros@googlegroups.com mailto:excel-macros@googlegroups.com
Cc:

Hi,

I have created Macro to send bulk emails from Excel file.

This macro is *working fine* if there is only *1 attachment* of file.

Now I want to *modify the macro* so that I can *attach multiple file*.

Please help me to modify the macro.


Thanks,

Nilkanth Raval

--
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, like 
Please Help, Urgent, Need Help, Formula Problem, Code Problem, and 
Need Advice will not get quick attention or may not be answered.

2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security 
measure.

4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE : Don't ever post confidential data in a workbook. Forum owners 
and members are not responsible for any loss.

---
You received this message because you are subscribed to the Google 
Groups MS EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send 
an email to excel-macros+unsubscr...@googlegroups.com 
mailto:excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com 
mailto:excel-macros@googlegroups.com.

Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.
--
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, like 
Please Help, Urgent, Need Help, Formula Problem, Code Problem, and 
Need Advice will not get quick attention or may not be answered.

2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security 
measure.

4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE : Don't ever post confidential data in a workbook. Forum owners 
and members are not responsible for any loss.

---
You received this message because you are subscribed to the Google 
Groups MS EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send 
an email to excel-macros+unsubscr...@googlegroups.com 
mailto:excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com 
mailto:excel-macros@googlegroups.com.

Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


--
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, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS EXCEL AND VBA MACROS group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


Copy of Send Bulk EMail Macro.xlsm
Description: application/vnd.ms-excel.sheet.macroenabled.12


Re: $$Excel-Macros$$ Excel workbook Issues

2015-07-29 Thread De Premor

Hi Vijayendra,

I've look at your workbook, there is to many shapes textbox on your 
sheets, on sheet a there is 27.456 shapes, and on sheet b 37.419 shapes.

You can use this code to know how many shape on it.

Dim i As Long
For i = 1 To Sheets.Count
MsgBox Sheet   Sheets(i).Name  vbCrLf  Sheets(i).Shapes.Count 
  shapes

Next

I've trying to delete all of them using macro, but it freeze my 
computer, here is the code if in case you wanna give it try

Sub DeleteShapesOneByOne()
Dim i As Integer, x As Long
For i = 1 To Sheets.Count
For x = 1 To Sheets(i).Shapes.Count
Sheets(i).Shapes(x).Select
Selection.Delete
Next
Next
End Sub

or

Sub DeleteAllShapesAtOnce()
Dim i As Integer,
For i = 1 To Sheets.Count
Sheets(i).Shapes.SelectAll
Selection.Delete
Next
End Sub

Both Of them, freeze my Excel

Rgds,
[dp]

On 28/07/2015 13:56, Vijayendra Rao wrote:

Dear Expert,

My one of excel file always hang, i will not be able to copy, paste. I 
have deleted all the data, still facing the same issue. Request you to 
help me to find out the problem, as I am having many files similar 
issues. Attached is the same.


Regards,
Vijayendra

--
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, like 
Please Help, Urgent, Need Help, Formula Problem, Code Problem, and 
Need Advice will not get quick attention or may not be answered.

2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security 
measure.

4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE : Don't ever post confidential data in a workbook. Forum owners 
and members are not responsible for any loss.

---
You received this message because you are subscribed to the Google 
Groups MS EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send 
an email to excel-macros+unsubscr...@googlegroups.com 
mailto:excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com 
mailto:excel-macros@googlegroups.com.

Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


--
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, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS EXCEL AND VBA MACROS group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


$$Excel-Macros$$ Client in Houston TX need ServiceNow Express Developer/Admin

2015-07-29 Thread MADHU-GenuineItLlc
*Hi Partner,*

*Please send resume to **ma...@genuineitllc.com* ma...@genuineitllc.com



*Title : ServiceNow Express consultant *

*Location : **Houston TX*

*Duration : 1 month project (maybe longer).  *



Let me know if you have anyone with a *ServiceNow background.*  Brief
description of what they are seeking is below:



Client signed up for ServiceNow Express so that we can have an in-house
platform for incident and *change management. *While we’ve had the training
from ServiceNow on how to setup and configure the service, we certainly
lack the time to do it. I’m looking for a short-term resource with
experience in *configuring* the service who might be able to come in and
help us set it up from scratch. I’m guesstimating it should take about 3-4
weeks to get it going.



Yes. *Onsite is preferred.* Some remote time is acceptable (up to about
50%), but will need to primarily be done onsite as it will be more
effective to be in the environment and more quickly collect data and
address questions / issues.



ServiceNow already offers Professional Services in blocks of hours, but
it’s remote only, thus my interest to look at alternatives.





---

*With Warm Regards *

*Madhu Roy*

GenuineIT LLC *Certified Women Owned Business*

Making IT Happen…

[image: cid:image001.png@01CD0B34.DFB7EBF0]

Ph: 832 539 3475

Fax: 281-605-5969

*E-Mail* :ma...@genuineitllc.com

*Gmail *: *nandimadhu74 , madhu.genuineitllc*

*YM  *: madhu_recruiter



Looking ahead to work with you for better Business prospects



[image: cid:image004.png@01CDB5D0.74A7EE40]

According to Bill S.1618 Title III passed by the 105th US Congress, this
message is not considered as Spam as we have included the contact
information. If you wish to be removed from our mailing list, please
respond with remove in the subject field. We apologize for any
inconvenience caused.

[image: Description: stylepic_globe1]Please consider the environment before
printing this e-mail

-- 
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, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


Re: Fwd: $$Excel-Macros$$ Send Bulk Mail Macro

2015-07-29 Thread Nilkanth Raval
Thanks a lot sir.

*Thanks,*
*Nilkanth Raval*
*+91 900 428 0 428*
*+91 808 000 1620*
*Think Before You Print.Consider ENVIRONMENT.*
*“SAVE TREES, SAVE EARTH” *

*“All appears to change when we change!”*


On 29 July 2015 at 22:00, De Premor d...@premor.net wrote:

  Hi Nilkanth,

 PFA, hope it solve your requirement

 Rgds,
 [dp]


 On 29/07/2015 17:01, Nilkanth Raval wrote:

 Hi All,

 Can anyone help me in below mail???

 Thanks,
 Nilkanth Raval
 -- Forwarded message --
 From: Nilkanth Raval nilkanth.ra...@gmail.com
 Date: Jul 28, 2015 3:59 PM
 Subject: $$Excel-Macros$$ Send Bulk Mail Macro
 To: excel-macros@googlegroups.com
 Cc:

 Hi,

 I have created Macro to send bulk emails from Excel file.

 This macro is *working fine* if there is only *1 attachment* of file.

 Now I want to *modify the macro* so that I can *attach multiple file*.

 Please help me to modify the macro.


 Thanks,

 Nilkanth Raval
 --
 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, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.
  --
 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, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.


  --
 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, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.


-- 
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, like Please Help, 
Urgent, Need Help, Formula Problem, Code 

Fwd: $$Excel-Macros$$ Send Bulk Mail Macro

2015-07-29 Thread Nilkanth Raval
Hi All,

Can anyone help me in below mail???

Thanks,
Nilkanth Raval
-- Forwarded message --
From: Nilkanth Raval nilkanth.ra...@gmail.com
Date: Jul 28, 2015 3:59 PM
Subject: $$Excel-Macros$$ Send Bulk Mail Macro
To: excel-macros@googlegroups.com
Cc:

Hi,

I have created Macro to send bulk emails from Excel file.

This macro is *working fine* if there is only *1 attachment* of file.

Now I want to *modify the macro* so that I can *attach multiple file*.

Please help me to modify the macro.


Thanks,

Nilkanth Raval

-- 
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, like Please
Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
will not get quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security
measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE : Don't ever post confidential data in a workbook. Forum owners and
members are not responsible for any loss.
---
You received this message because you are subscribed to the Google Groups
MS EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an
email to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.

-- 
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, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


Send Bulk EMail Macro.xlsm
Description: application/vnd.ms-excel.sheet.macroenabled.12


Re: $$Excel-Macros$$ Hiding empty columns using VBA - Some columns not hiding

2015-07-29 Thread Paul Schreiner
I opened your file in Excel 2010 and ran your macro.All columns that had at 
least one X in it was displayed.Your column K has an X in row 4, so I'm 
not sure why you think it should've been hidden. 
There's a couple of things in the macro that I'd change:1) When you're looking 
through the values in the column,   I'd follow the suggestion: When you find 
what you're looking for,    stop looking.  That is, when the cell value is 
non-blank,    set your flag and then use: Exit For   so that you break out of 
the loop (for the column)      This isn't a big deal when you're dealing with 
25 columns and only 7 rows. Since that is only 175 if() tests.but if you're 
working with 67 rows, that's a WHOLE lot more.And in your example, 11 of the 25 
rows will stop after the first test,(since there's a value in the first record)
If your macro is failing to hide column L,I'd add a line in the macro:
    For i = 1 To nLastColumn
   If (i = 12) Then Debug.Assert False
this will cause the macro to pause at the start of evaluating column L and 
you can step through the macro to see where it's finding a value that causes it 
to fail to hide.
I'll take a look again after my 7:30 meeting! :)



Paul-
“Do all the good you can,
By all the means you can,
In all the ways you can,
In all the places you can,
At all the times you can,
To all the people you can,
As long as ever you can.” - John Wesley
-
 
  From: Becky Strope rstrope...@gmail.com
 To: MS EXCEL AND VBA MACROS excel-macros@googlegroups.com 
 Sent: Tuesday, July 28, 2015 4:31 PM
 Subject: $$Excel-Macros$$ Hiding empty columns using VBA - Some columns not 
hiding
   
I've got several Excel files that I'm trying to clean up on a regular basis, 
part of which includes hiding columns (with column headers) that don't contain 
any data. All of the columns I'm looking to hide have If Statements linked to 
information in other cells. In poking around for workable code, I found this 
post -- https://groups.google.com/forum/#!topic/excel-macros/abziBlIHT7I -- and 
am using that code. It works partially. Most columns are being hidden, but 
there are four columns (K, L, M, and O) that should be hidden but don't. I'm 
not sure why it's not working completely. Any help would be appreciated.  -- 
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, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.
 
NOTE : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


   

-- 
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, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


$$Excel-Macros$$ Urgent need in Houston, TX--Business intelligence Specialist

2015-07-29 Thread MADHU-GenuineItLlc
Hi Partner,

Please send resume to ma...@genuineitllc.com



*Title : Business intelligence Specialist*

*Location : Houston*



*POSITION SUMMARY:-*

This position is responsible for the business intelligence (BI) and
reporting programs for the company. The incumbent shall manage customer
relationships and ensure highest level of customer satisfaction and be
accountable for the successful implementation, maintenance, continuous and
reliable operation of the company's Business Objects reports and their
supporting data and code.  The person shall supervise contractors and
consultants and working with vendor consultants for the business
intelligence program.  Clear understanding of advanced analytics and
functional reporting will be required.



*EXPERIENCE REQUIREMENTS:-*

ü  7 years minimum progressive experience in enterprise *wide BI and
Reporting*

ü  At least  3 to 5 years of demonstrated use of SQL*Plus, PL/SQL, usage of
TOAD tool or alike

ü  Proven work record in creating Business intelligence systems

ü  On hands experience with *SAS Reports 3-5 years’* experience of
programing and Admin

ü  Demonstrated knowledge of functional and technical requirements
specification writing.

ü  Deep knowledge and understanding of IT applications and database systems
with ERP and non-ERP systems;  knowledge of Oracle EBS, *Maximo* is a plus

ü  Understanding of business process and flow and how BI systems relate and
interact with those flows

ü  Prior reporting experience with Oracle EBS, Maximo enterprise systems a
plus

ü  Fluent in English, oral and written

ü  Ability to lead, direct and supervise outsourced vendors

ü  Ability to adjust work schedule to meet business needs and objectives

ü  Ability to travel as needed



*MAJOR ACCOUNTABILITIES*

o   Implement and maintain Business intelligence systems to support the
organization's business needs

o   Gather requirements, design and develop new reports or existing report
enhancements

o   Help define and determine Business Intelligence direction for the
enterprise

o   Manage the Business intelligence program, including  Applications,
Databases and Infrastructure

o   Work with other IT department heads to ensure all work groups
understand all aspects of the Coffeyville resources Business intelligence
program.

o   Initiate and manage information systems BI training programs presented
to internal business groups

o   Manage and administer BI Security

o   Conduct on-site BI training to users

o   Research IT issues related to Business intelligence.

o   Collaborates and partners with our partner organizations and vendors

o   Supervise, motivate and mentor assigned staff

o   As part of IT Team, address and resolve assigned Footprints/help desk
tickets

§  Respond to BI and Report (SAS and BO) Tickets within specified time

§  Update tickets daily

§  Escalate tickets to ASG Support Manager or Director if no progress after
3 days

o   Work with “Implementation team” for Staging and Production installs

o   Available to assist on monthly maintenance outages as needed

o   Available to assist on Disaster Recovery Projects

o   Assist on ASG (Applications Support Group) team initiatives – ex.
How-Tos; process flow; etc.



*EXPECTED RESULTS*

o   Uniform and easy to understand BI strategy

o   Users Trained on the BI tools and services

o   Improved business efficiencies and end users’ interactions with IT group

o   Assigned projects completed within budget and schedule

o   IT staff achieving goal of superior quality levels service for the
business and with end users

---

*With Warm Regards *

*Madhu Roy*

GenuineIT LLC *Certified Women Owned Business*

Making IT Happen…

[image: cid:image001.png@01CD0B34.DFB7EBF0]

Ph: 832 539 3475

Fax: 281-605-5969

*E-Mail* :ma...@genuineitllc.com

*Gmail *: *nandimadhu74 , madhu.genuineitllc*

*YM  *: madhu_recruiter



Looking ahead to work with you for better Business prospects



[image: cid:image004.png@01CDB5D0.74A7EE40]

According to Bill S.1618 Title III passed by the 105th US Congress, this
message is not considered as Spam as we have included the contact
information. If you wish to be removed from our mailing list, please
respond with remove in the subject field. We apologize for any
inconvenience caused.

[image: Description: stylepic_globe1]Please consider the environment before
printing this e-mail

-- 
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, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not