Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: SARUN
  • Order by date
  1. SARUN

    Get Excel user's name

    Couldn't resist One More Star. I guess 5 is the Max. Arun "Whereever you go there are people who need you for what you can do..."
  2. SARUN

    Pivot Table Question

    This is a peice of code that I've been using for months Dim mLstRow As Variant Range("A1").Select Selection.End(xlDown).Select mLstRow = ActiveCell.Row ActiveSheet.PivotTableWizard SourceType:=xlDatabase, SourceData:= _ ActiveSheet.Name & "!R1C1:R" & mLstRow &...
  3. SARUN

    Deleting/Hiding Rows in Excel

    Oops Sorry, I had a Select Case statement which I modified and apparently forgot to add the THEN and END IF Statement. "Whereever you go there are people who need you for what you can do..."
  4. SARUN

    Deleting/Hiding Rows in Excel

    Make a copy of your spreadsheet and try this Sub deljunk() Dim mRowCtr As Variant mRowCtr = 2 While Range(&quot;A&quot; & mRowCtr).Value <> &quot;&quot; if Range(&quot;D&quot; & mRowCtr).Value = &quot;&quot; Range(&quot;A&quot; & mRowCtr).Select ActiveCell.EntireRow.Delete...
  5. SARUN

    Converting a formula into code

    Tony, No Problem, I get it. Hope Navvy has seen your comments too. Good to keep learning. Thanks &quot;Whereever you go there are people who need you for what you can do...&quot;
  6. SARUN

    Converting a formula into code

    Tony, Thanks pointing out the mistakes. &quot;Do ... While True is not a valid VBA construct&quot;, if you can pl. direct me on the cons of using Do While. &quot;mCtr needs incrementing somewhere ....&quot; How many times I've told myself to INCREMENT the counter. (I did bang my head on the...
  7. SARUN

    Converting a formula into code

    Navvy, Try this Sub Trial() Dim mCtr As Integer Dim mResult As Integer mCtr = 1 Do If Range(&quot;M&quot; & mCtr).Value <> &quot;&quot; Then If VBA.IsNumeric(Range(&quot;M&quot; & mCtr).Value) Then Range(&quot;D&quot; & mCtr).Value =...
  8. SARUN

    lotus notes &amp; terminal server

    Thanks Miguel, &quot;Whereever you go there are people who need you for what you can do...&quot;
  9. SARUN

    lotus notes &amp; terminal server

    Miguel I'd marked this post. Can you provide me the info. I'm looking at reducing cost of ownership. I'm examining the possibilities of implementing Domino on a Terminal Server with thin clients. Arun &quot;Whereever you go there are people who need you for what you can do...&quot;
  10. SARUN

    Server Installation

    Individual Locations do not have a SA, Ghosting cannot be done on a Monthly basis but sure we can try it for HW Upgrades. Anyone faced problems with ghosting. &quot;Whereever you go there are people who need you for what you can do...&quot;
  11. SARUN

    How Can I Make a Monthly Pivot Table, with data blocks of Varying Size

    Or Range(&quot;A1&quot;).Select Selection.End(xlDown).Select mLstRow = ActiveCell.Row ActiveSheet.PivotTableWizard SourceType:=xlDatabase, SourceData:= _ ActiveSheet.Name & &quot;!R1C1:R&quot; & mLstRow & &quot;C26&quot;, TableDestination:=&quot;&quot...
  12. SARUN

    How Can I Make a Monthly Pivot Table, with data blocks of Varying Size

    you could pick the Rows & Columns from ActiveSheet.UsedRange &quot;Whereever you go there are people who need you for what you can do...&quot;
  13. SARUN

    Server Installation

    LN 4.6 / Win NT 4.0 We've Notes Server spread across the country. If a Server Hard Disk goes down or needs to be upgraded, the SA from the Regional Office has install it on a New Hard Disk & Travel to the Regional Office to Install it. Jus wanted to Know is there a better way to do this...
  14. SARUN

    How do I use vba or a macro to rename an imported worksheet

    Oops, I'm not sure about using Pivot Tables if you've data on different sheets. But the approach depends upon what data you have and what summary you're looking for. &quot;Whereever you go there are people who need you for what you can do...&quot;
  15. SARUN

    How do I use vba or a macro to rename an imported worksheet

    Your objective can be acheived but you're anot clear which part you need help. 1. Import of Text File to Excel Sample Code: Workbooks.OpenText FileName:=Trim(fpname), Origin:= _ xlWindows, StartRow:=1, DataType:=xlFixedWidth, FieldInfo:=Array(Array(0, _ 1), Array(31, 1)...
  16. SARUN

    How to write an Agent to forward only mail less than 10MB??

    If you're looking to Forward New Mails to another mail address, it is possible. Jus the question of which field to use in R5.08. I use 4.6 so cannot be of much help. &quot;Whereever you go there are people who need you for what you can do...&quot;
  17. SARUN

    How to write an Agent to forward only mail less than 10MB??

    For processing Incoming Mails by the Agents, you should use &quot;If New mail has arrived&quot; in &quot;When the Agents should Run?&quot;. If you're using attributes of the Mail like SMTP Originator, Size, etc you need to use Condition &quot;By Field&quot; And in your case it will be...
  18. SARUN

    .DTF file in Notes E-mail

    Problem: Messages sent from Outlook 98 or Outlook 2000 that contain an attachment are received in Notes with a C.DTF or ATTXXX.DAT attachment. Messages that contain no attachments from Outlook are received with no problems. Solution: Check to make sure the person sending the message from...
  19. SARUN

    HELP! Mail being sent to recipient &quot;Added By System&quot; automatically

    1) Check in the Person B's Mailbox the SMTPOriginator Property for the Mail or Check the Sent By in the Mail 2) Check if there any Agents enabled &quot;Whereever you go there are people who need you for what you can do...&quot;
  20. SARUN

    Is Auto-forwarding of messages a possibility?

    Its &quot;If New Mail Has Arrived&quot; in LN 4.6. I think you must be using LN 5.0. You need to use &quot;After New Mail Arrives&quot; since you want to forward an Incoming Mail. which you can only after the mail has arrived. I'm not sure where &quot;Before New Mail Arrives&quot; is to be...

Part and Inventory Search

Back
Top