Re: $$Excel-Macros$$ find doubling

2011-09-28 Thread Brajesh Kumar Porwal
Anil Sort the data after use formula. Regards, Brajesh On Thu, Sep 29, 2011 at 10:54 AM, anil kumar wrote: > Hello sir, > > > frist of all thanks for reply. I used your formula but it is not work > according to my data. I have attched that file. plz see that. > > > > Thanks & Regards > > > A

Re: $$Excel-Macros$$ find doubling

2011-09-28 Thread anil kumar
Hello sir, frist of all thanks for reply. I used your formula but it is not work according to my data. I have attched that file. plz see that. Thanks & Regards Anil -- -- Some important links for excel users:

$$Excel-Macros$$ Computer moving average hrs of play per day

2011-09-28 Thread Ken
I have a spreadsheet where I track my Poker play. I play a few times per week. The amount of play varies a lot. Each time I play I add a row to a sheet with the date, hrs played, loss, win, etc and computer various values; cash flow, win / loss ratio, best day of week to play, best game, etc. e.

RE: $$Excel-Macros$$ Hidden Columns and Save Location

2011-09-28 Thread Boucher, Kent C
Paul and Ashish, You guys have been terrific - thank you for ALL your help!!! Sincerely, Kent From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On Behalf Of Paul Schreiner Sent: September 28, 2011 2:46 PM To: excel-macros@googlegroups.co

Re: $$Excel-Macros$$ Union to transfor a non-contiguous to a contiguous range In VBA

2011-09-28 Thread excelCPA
Thanks for the response, but unfortunately this doesn't work with the XIRR function as it only accepts 1-dimensional ranges. The resulting ‘urmg’ variable is a 2-dimensional range since the first range is in column B and the second range is in column C. The reulting urmg range basically looks lik

Re: $$Excel-Macros$$ Hidden Columns and Save Location

2011-09-28 Thread Paul Schreiner
your example should save the file as: "\\server8\cpd\CompReserve\kents folder\TEST FOLDER.xls" if you're wanting to save it with the current name in the folder called: "\\server8\cpd\CompReserve\kents folder\TEST FOLDER" then you should use: "\\server8\cpd\CompReserve\kents folder\TEST FOLDER\"

RE: $$Excel-Macros$$ Hidden Columns and Save Location

2011-09-28 Thread Boucher, Kent C
Hi Ashish, Thank you for getting back to me so quickly. I managed to get the columns and rows unhidden thanks to your advice, however, I am unable to change the saving location - it keeps saving to the original folder and not to the destination folder ("\\server8\cpd\CompReserve\

Re: $$Excel-Macros$$ Numbers errors

2011-09-28 Thread Mahesh parab
Hi Anil If you are not doing calculation with numbers then you can change the format to text check whether this helps http://office.microsoft.com/en-us/excel-help/display-numbers-as-credit-card-numbers-HA010236840.aspx HTH Mahesh On Wed, Sep 28, 2011 at 9:39 PM, XLS S wrote: > Hey Anil, > >

Re: $$Excel-Macros$$ Hidden Columns and Save Location

2011-09-28 Thread ashish koul
add For Each wk In wkb.Sheets wk.select Cells.EntireRow.Hidden = False Cells.EntireColumn.Hidden = False and replace wkb.Path & "/" in wkb.SaveAs wkb.Path & "/" & Left(wkb.Name, InStrRev(wkb.Name, "")) & ".xls" with ur path "c:\" etc On Wed, Sep 28, 2011 at 9:11 PM, HarryP Knuckles w

Re: $$Excel-Macros$$ Union to transfor a non-contiguous to a contiguous range In VBA

2011-09-28 Thread ashish koul
Sub union_data() Dim s As Range, unrng As Range Set unrng = Union(Range("b1:b4"), Range("c4")) For Each s In unrng MsgBox s.Value Next End Sub On Wed, Sep 28, 2011 at 9:04 PM, excelCPA wrote: > I am trying (unsuccessfully) to dynamically transform a single column > non-contiguous data range to

Re: $$Excel-Macros$$ Numbers errors

2011-09-28 Thread XLS S
Hey Anil, Microsoft Excel stores numbers with up to 15 digits of precision. If a number contains more than 15 significant digits, Microsoft Excel converts the extra digits to zeros (0). You have 2 options:- You already know one of them Put an apostrophe (') in front of the number. That's OK for

$$Excel-Macros$$ Union to transfor a non-contiguous to a contiguous range In VBA

2011-09-28 Thread excelCPA
I am trying (unsuccessfully) to dynamically transform a single column non-contiguous data range to single column contiguous range using VBA, basically dynamically appending the second range to the first. My spreadsheet is as follows: Column A contains a series of dates in sequential order Column

$$Excel-Macros$$ Hidden Columns and Save Location

2011-09-28 Thread HarryP Knuckles
Good morning guys, You guys have been super helpful! I have a macro that is working well but would like to do two things with it. 1) I would like to have all the columns and rows automatically unhidden for each worksheet. 2) I would like the save location changed to: ‘

$$Excel-Macros$$ Hidden Columns and Save Location

2011-09-28 Thread HarryP Knuckles
Good morning guys, You guys have been super helpful! I have a macro that is working well but would like to do two things with it. 1) I would like to have all the columns and rows automatically unhidden for each worksheet. 2) I would like the save location changed to: ‘

Re: $$Excel-Macros$$ Very tuff macro

2011-09-28 Thread suresh k
Hi Sam, Thanks for your reply. Once the cells in Column A match towards Column B should not consider for second time. For eg: 3 & 5 is already matched with 8 in column B. so these cells should not come for next calculation. /Suresh On Wed, Sep 28, 2011 at 9:04 PM, Sam Mathai Chacko wrote: >

Re: $$Excel-Macros$$ Very tuff macro

2011-09-28 Thread Sam Mathai Chacko
what about 6 and 3 as a match for 9 On Wed, Sep 28, 2011 at 9:01 PM, suresh k wrote: > Hi All, > > Any macro man can help me on this. > > I have attached the excel with my query. > > /Suresh > > -- > > -- > Some impo

$$Excel-Macros$$ Very tuff macro

2011-09-28 Thread suresh k
Hi All, Any macro man can help me on this. I have attached the excel with my query. /Suresh -- -- Some important links for excel users: 1. Follow us on TWITTER for tips tricks and links : http://twitter.com/exceld

Re: $$Excel-Macros$$ Format to be Changed!$$$$$$$$$

2011-09-28 Thread dguillett1
This macro will do it option explicit Sub TransposeEmSAS() Dim r As Long Application.ScreenUpdating = False Columns("J").Resize(, 2).Insert r = 2 doit: If Cells(r + 1, 1) = "" Then GoTo deletecolumns Rows(r + 2).Resize(4).Insert 'copy colors Range("L2:P2").Copy Cells(r + 1, "j").PasteSpecial Paste

$$Excel-Macros$$ Re: Numbers errors

2011-09-28 Thread saggi
Kindly Share the sheet On Sep 28, 1:09 pm, Anil Bhange wrote: > Hi Experts, > > I wanted your help in below points, > > 1.    In excel my companies Bank account number is more than 20 digit > > 2.    And there are approx. 100 bank account numbers > > 3.    When I copy those numbers from one excel

$$Excel-Macros$$ Re: Format to be Changed!$$$$$$$$$

2011-09-28 Thread saggi
Take the help of Pivot On Sep 28, 10:40 am, shashank bhosle wrote: > Hello Friends, > > I have attach the sheet which included two table > T1 > T2 > > i want to change the T1 data to T2 > > Please help > > Regards > Shashank > 9422927499 > >  Phase I.xls > 44KViewDownload -- ---

$$Excel-Macros$$ Re: find doubling

2011-09-28 Thread hemal shah
If you have excel 2007 then follow the following procedure Select the your data range and go to Home --> Conditional Formatting -->Highlight Rules--> Duplicate Values.. It will highlight your duplicate data and by filtering it you can copy it. Regards Hemal 9260544391 --

$$Excel-Macros$$ Re: Numbers errors

2011-09-28 Thread hemal shah
Better to add single quote ( ' ) before bank account number . and while you copy that number to another cell, it will remain same. -- -- Some important links for excel users: 1. Follow us on TWITTER for tips tricks

$$Excel-Macros$$ Numbers errors

2011-09-28 Thread Anil Bhange
Hi Experts, I wanted your help in below points, 1.In excel my companies Bank account number is more than 20 digit 2.And there are approx. 100 bank account numbers 3.When I copy those numbers from one excel to another digits after 15 alphabet convert to "0" 4.What I understood

Re: $$Excel-Macros$$ find doubling

2011-09-28 Thread Brajesh Kumar Porwal
Dear Anil, See below formula if it help to You. =IF(A2=A3,"Duplicate","Unique") Regards, Brajesh On Wed, Sep 28, 2011 at 12:46 PM, anil kumar wrote: > Hi everybody, > > I have a file in which some data is double i want to find that data. I used > short key Alt + AM but it is remove double d

$$Excel-Macros$$ find doubling

2011-09-28 Thread anil kumar
Hi everybody, I have a file in which some data is double i want to find that data. I used short key Alt + AM but it is remove double data insted of show data i want to copy that data. Thanks & Regards Anil --