?? You mean like: fArray = Split(Replace(fName,"_","-"), "-") ??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 -----------------------------------------
On Thursday, March 17, 2016 12:33 PM, Devendra Sahay <devendrasahanypt...@gmail.com> wrote: Yes, something like that, because sometimes we got the name of images with _M_1 & -M-1. So please modify that highlighted line. On Thu, Mar 17, 2016 at 9:59 PM, Paul Schreiner <schreiner_p...@att.net> wrote: Are you saying that you want the macro to treat the filename like "atnst-a2-2_m_2_2x.jpg "as if the "-" and the "_" are the same? In that case, I would temporarily replace the "_" with "-" and split the name into the array: fArray = Split(Replace(fName,"_","-"), "-") 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 ----------------------------------------- On Thursday, March 17, 2016 12:08 PM, Devendra Sahay <devendrasahanypt...@gmail.com> wrote: Hey Paul, Have a issue, can we include both conditions like,currently i hav image with both strings like atnst-a2-2_m_2_2x.jpg (with _ underscore) & dash (-). Please include both conditions in image separation ( _ & - ) this is the line, where you have written the separation condition fArray = Split(fName, "-") Option Explicit Public Dict_Article Function File_Category(fName As String) Dim fArray, Article, inx, cnt Dim iArray, nRows, RowNum Dim imageNo Debug.Assert True '-------------- ' Load Article Dictionary '-------------- On Error Resume Next cnt = Dict_Article.Count If (Err.Number <> 0) Or (cnt = 0) Then Set Dict_Article = CreateObject("Scripting.Dictionary") nRows = Application.WorksheetFunction.CountA(Sheets("Sheet1").Range("A:A")) If (nRows > 1) Then For RowNum = 2 To nRows If (Not Dict_Article.exists(Sheets("Sheet1").Cells(RowNum, "A").Value)) Then Dict_Article.Add Sheets("Sheet1").Cells(RowNum, "A").Value, RowNum End If Next RowNum End If Err.Clear End If '-------------- fArray = Split(fName, "-") Article = fArray(0) If (UBound(fArray) > 3) Then For inx = 1 To UBound(fArray) - 3 Article = Article & "-" & fArray(inx) Next inx End If imageNo = fArray(UBound(fArray) - 1) If (Not IsNumeric(imageNo)) Then iArray = Split(fArray(UBound(fArray)), ".") imageNo = iArray(0) End If If (Not Dict_Article.exists(Article)) Then RowNum = Dict_Article.Count + 2 Dict_Article.Add Article, RowNum Else RowNum = Dict_Article.Item(Article) End If If (Sheets("Sheet1").Cells(RowNum, "A").Value & "X" = "X") Then Sheets("Sheet1").Cells(RowNum, "A").Value = Article Sheets("Sheet1").Cells(RowNum, imageNo + 1).Value = fName Debug.Assert TrueEnd Function On Tue, Mar 1, 2016 at 9:40 PM, Devendra Sahay <devendrasahanypt...@gmail.com> wrote: Hi Paul, Thanks for writing the code but will you please integrate the below code in the existing macro, So that user can select the folder where he want to save the files OR Please write a code to save a copy of Sheet 1 in the path which we have given in Filelist. (B1) For the image sequence, I can check them manually. Ignore that concern. Code- Sub SaveTheFile() ThisWorkbook.Sheets("Sheet1").Copy ActiveWorkbook.SaveAs "C:\Users\user\Desktop\New folder (2)\Upload.xlsx", FileFormat:=51End Sub On Tue, Mar 1, 2016 at 9:28 PM, Paul Schreiner <schreiner_p...@att.net> wrote: There's no doubt many ways to handle this.A couple come to mind.Windows does some funny things when listing files in a folder.The first file it comes to isn't always the first alphanumerically, or even the oldest or newest.sometimes, it just starts in the middle and goes through to the end, then starts a the beginning and goes until it reaches the file it started with. If you don't care in what sequence the files are listed, then we could simply put them in the "next" cell as they are encountered.If you want them in numerical order, then we can run a macro to "consolidate" and remove the spaces. and yes, you can save the file in the same folder. I have the macro ignoring any .xls files. 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 ----------------------------------------- On Tuesday, March 1, 2016 10:45 AM, Devendra Sahay <devendrasahanypt...@gmail.com> wrote: Hi Paul, Code is running properly, but there is an issue, for example- if an article have 5 images but 2 images ( Views -M-4 & M-5 ) are missing then images should be in sequence without leaving any gap. Like i have highlighted. ** If we can save the prepared file ( Copy of Sheet 1 ) in the same folder,which we have selected for upload sheet prepartion. Thanks,Devendra On Tue, Mar 1, 2016 at 1:00 AM, Paul Schreiner <schreiner_p...@att.net> wrote: Here. I made this one exclude anything with "XLS" in the filename. 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 ----------------------------------------- On Monday, February 29, 2016 12:59 PM, Devendra Sahay <devendrasahanypt...@gmail.com> wrote: Hi Paul, This is running properly, but can we save the prepared file in same folder, which we have selected. One more thing, the code which you have shared previously for folder creating & moving files in folder, is not running properly. its giving error for DB director. If you can solve this, would be helpful. sharing the code. Sub Divide_folder() Dim fso, fldr, FileNm, FileColl Dim FolderName, NewFolder, FolderIndex As Integer Dim fCnt, cnt FolderName = ThisWorkbook.Path & "\" '(be sure folder name ends in "\") Set fso = CreateObject("Scripting.FileSystemObject") fCnt = 0 FolderIndex = 1 NewFolder = FolderName & "Folder_" & Format(FolderIndex, "000") & "\" If (Not fso.folderexists(NewFolder)) Then MkDir NewFolder End If Set fldr = fso.GetFolder(FolderName)' Debug.Assert False For Each FileNm In fldr.Files Debug.Assert True fCnt = fCnt + 1 If (fCnt > 200) Then FolderIndex = FolderIndex + 1 NewFolder = FolderName & "Folder_" & Format(FolderIndex, "000") & "\" If (Not fso.folderexists(NewFolder)) Then MkDir NewFolder End If fCnt = 1 End If fso.movefile FolderName & FileNm.Name, NewFolder Next FileNm MsgBox "Finished"End Sub On Mon, Feb 29, 2016 at 11:22 PM, Paul Schreiner <schreiner_p...@att.net> wrote: I can have it skip the "M" value if it is found. in the first and latest examples, your image number is found in the first part of the "1-2x.jpg"But the second example had "1.2x-jpg" trying to differentiate between THOSE values would be a little more difficult, but possible.it that necessary? 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 ----------------------------------------- On Monday, February 29, 2016 12:46 PM, Devendra Sahay <devendrasahanypt...@gmail.com> wrote: Hi, Each time, when i prepare upload sheet. article name might be different but the naming after the article no would be similar. On Mon, Feb 29, 2016 at 11:08 PM, Paul Schreiner <schreiner_p...@att.net> wrote: Those are not the same filename structure as in your previous sample filenames,but they match your original request. This should work for you. 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 ----------------------------------------- On Monday, February 29, 2016 12:15 PM, Devendra Sahay <devendrasahanypt...@gmail.com> wrote: Hi Paul, Please check attached file & images. Thanks, On Mon, Feb 29, 2016 at 10:09 PM, Paul Schreiner <schreiner_p...@att.net> wrote: Try this and see how it works 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 ----------------------------------------- On Monday, February 29, 2016 9:36 AM, Devendra Sahay <devendrasahanypt...@gmail.com> wrote: Hi Paul, Please check the attached file, as asked. Thanks, Devendra On Mon, Feb 29, 2016 at 7:29 PM, Paul Schreiner <schreiner_p...@att.net> wrote: Sorry for the delay.I spend 10-12 hours a day throughout the week on a computer.When a beautiful weekend comes along, I tend to spend my time doing other things and never even APPROACHED my computer! Please see my earlier response. 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 ----------------------------------------- On Monday, February 29, 2016 8:51 AM, Paul Schreiner <schreiner_p...@att.net> wrote: IF I understand correctly, your task should be easily accomplished.I've done something similar in the past.But my criteria was based on total file size. Do ALL of your filenames consist of 7 fields separated by "-"? If you were to use split() on your filenames, using "-" as a delimiterwould fields 0-3 make up the "article" and array(5) represent the "sequence"? Given a list of files in your folder, we could easily create a list like your Sheet1 example. If you could open the attached file and change the folder name in cell B1 of the FileList sheet,then run the file_list macro (or double-click cell A1).Then send me the file.I'd be glad to write a simple macro to parse out the file names. 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 ----------------------------------------- On Sunday, February 28, 2016 8:19 AM, Devendra Sahay <devendrasahanypt...@gmail.com> wrote: Hi Experts, Sorry for posting such a big query on forum but this issue is time taking & i want to do it in smart way but not able to do. So please check the below mentioned scenario & assist. Scenario- I have 2000 (.jpg ) images in a folder, with a similar names like mentioned ( only difference of their sequence no, highlighted"-M-2-2x.jpg") & due to some tech limitation system doesn't allow to upload more than 200 Images at one time ( It might be less according the image sequence for eg the last sequecne is M-8 then no of the images might be less than 200 ) Currently am manually checking the sequence of the images & moving them in folders ( Prepare batches to upload ) after that using a batch file, i get the file names of images, including their extension name.after that I separate the name of the article no from image name for eg. image name is "GAH-INZ-PRT-01AS-M-2-2x.jpg" then article no would be "GAH-INZ-PRT-01AS" and after that using some excel functions i prepare a upload sheet like i have attached. Required solution : - Step 1 -I want to prepare batches of images ( code can decide & check the last no of sequence for eg. i have 35 article & each article no have 6 images, then it would only prepare first batch of 35 articles ) Step-2 Get the filenames in created folders ( for 35 articles ), there would be a pop-up to select the folders manually. after that separate the article no from image naming & prepare the upload sheet ( like attached ) & save the prepared excel sheet in same folder, which i have selected. @Mandeep & Paul, I have much expectations from both of you, Please assist. Thanks,Devendra -- With Regard !!!Devendra Rahi 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. -- 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 https://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 https://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 https://groups.google.com/group/excel-macros. For more options, visit https://groups.google.com/d/optout. -- With Regard !!!Devendra Rahi -- 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 https://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 https://groups.google.com/group/excel-macros. For more options, visit https://groups.google.com/d/optout. -- With Regard !!!Devendra Rahi -- 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 https://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 https://groups.google.com/group/excel-macros. For more options, visit https://groups.google.com/d/optout. -- With Regard !!!Devendra Rahi -- 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 https://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 https://groups.google.com/group/excel-macros. For more options, visit https://groups.google.com/d/optout. -- With Regard !!!Devendra Rahi -- 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 https://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 https://groups.google.com/group/excel-macros. For more options, visit https://groups.google.com/d/optout. -- With Regard !!!Devendra Rahi -- 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 https://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 https://groups.google.com/group/excel-macros. For more options, visit https://groups.google.com/d/optout. -- With Regard !!!Devendra Rahi -- With Regard !!!Devendra Rahi -- 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 https://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 https://groups.google.com/group/excel-macros. For more options, visit https://groups.google.com/d/optout. -- With Regard !!!Devendra Rahi -- 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 https://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 https://groups.google.com/group/excel-macros. For more options, visit https://groups.google.com/d/optout.