+ Reply to Thread
Results 1 to 21 of 21

Changing lowercase to uppercase for identical values in column and copying to seperate TAB

  1. #1
    Forum Contributor
    Join Date
    01-26-2012
    Location
    Mumbai
    MS-Off Ver
    Excel 2013
    Posts
    154

    Changing lowercase to uppercase for identical values in column and copying to seperate TAB

    Dear Experts ,

    This may be a quickie for most ,

    Please see attached files "Input " -what we shall have and Output- what i basically want


    In Input file spreadsheet attached , you shall observe that in Column E that there are identical values in both lowercase as well as uppercase ,

    For example,in column E there may be value "ran" -I.E Lowercase and then again "RAN" i.e Uppercase ,similarly there may be a value "edn" and then again EDN ,

    To understand what i want ,you can now see attached file "Output "
    I want all lowercase values to be converted to uppercase values so that all identicall values are UPPERCASE ,
    atached output sheet ,...basically in above example ,i want ran to be converted to "RAN" and edn to be converted to "EDN" so that we only have distinct "RAN " AND "EDN" AND no lowercase values ...for the converted lower to upper,i want the values to have a color (say brown like in attached output sheet ) so that i know which values have actually got converted ....

    Also for Column E when there are blank cells ,i want cell G for that row to be copied into Cell E -Mostly this value shall be "NOT FOUND " as can be observed from the attached output sheet ,

    All this i want in a seperate tab so that i can compare the final result from the actual result and see/study the difference ,

    Thanks in advance to anyone attempting to solve this ,


    Regards ,


    Amlan Dutta

  2. #2
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,040

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    Try this macro:

    Please Login or Register  to view this content.
    Never use Merged Cells in Excel

  3. #3
    Forum Contributor
    Join Date
    01-26-2012
    Location
    Mumbai
    MS-Off Ver
    Excel 2013
    Posts
    154

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    That works in converting lowercase to uppercase ,

    Please Login or Register  to view this content.
    and does it incredibly well in flash of a second !

    I wished that the converted values have a seperate color and rathe rthan getting converted in the same tab does so in another tab of the same workbook for me to compare Input and output ,

    I have run your macro and attached the output file ,also i attach the desired output file ,

    In any case ,much of the thing is solved ,so i am glad ,

    A small thing remained ,for the cells which were blank i wanted column G values to be pasted ,(but that i can manage )

    What you have done is already so much ,so i will mark thread solved and give you sweet deserved reps,

    Thanks so so much !

    Regards ,


    Amlan Dutta

  4. #4
    Forum Contributor
    Join Date
    01-26-2012
    Location
    Mumbai
    MS-Off Ver
    Excel 2013
    Posts
    154

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    Dear ,

    As a student ,i am studying the code ,am i correct in understanding that in this part of the code

    "IF(ISTEXT(" & .Address & ")-the macro is checking the text value in the given range -step 1



    ,UPPER(" & .Address & ")-here it is seeing whether in the selected range there is a uppercase match to the above match in step 1 -step 2


    REPT(" & .Address & ",1))"-rhere it converts to upper case with 1 being boolean true ......-converts all step 1 to step 2 -step 3

    Thanks ,

    Amlan Dutta

  5. #5
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,040

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    Not exactly.
    You should notice IF function. It check:

    "IF(ISTEXT(" & .Address & ")-the macro is checking is the value in range a text value -step 1

    if Yes

    ,UPPER(" & .Address & ")-Convert value into uppercase -step 2

    if not (step 2 again)

    REPT(" & .Address & ",1))"-return previous value -step 2

  6. #6
    Forum Contributor
    Join Date
    01-26-2012
    Location
    Mumbai
    MS-Off Ver
    Excel 2013
    Posts
    154

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    Very slick ,i googled IF function and understand it now fully ...also your explanation rocks ,

    I don't get the third part ,

    If the value in the cell is not Text ,then this part 3 happens

    REPT(" & .Address & ",1))...what is this 1 for and exactly what does it end up doing since no text means null cell !

    Thank's,

    Amlan Dutta

  7. #7
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,040

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    REPT function repeat value in a cell 1 time (that's 1 in formula).
    If it's blank it will repeat blank.
    Once
    If it's number it will repeat number.

  8. #8
    Forum Contributor
    Join Date
    01-26-2012
    Location
    Mumbai
    MS-Off Ver
    Excel 2013
    Posts
    154

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    Stuff of the champions ,you rock !i now get it fully ....thanks so much !

    (i might sound silly here but let me be honest ,i was thinking that 1 was meaning boolean true and was priding myself on that logic ,i now feel so silly ,lol)

    Thanks ,i have no further questions to the thread ,i may also attempt to solve it using for loop ,if i end up doing that ,i will also post it !

    Thanks a tonne for all help ,i did give you reps and marked the thread as solved ,

    Hugs ,

    Amlan

  9. #9
    Forum Contributor
    Join Date
    01-26-2012
    Location
    Mumbai
    MS-Off Ver
    Excel 2013
    Posts
    154

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    Any idea why this might not work ,


    Please Login or Register  to view this content.

    Regards ,


    Amlan

  10. #10
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,040

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    You didn't define where is a range that loop need to change.
    x.value is 3.value. What's that?


    Please Login or Register  to view this content.
    Last edited by zbor; 07-01-2012 at 06:01 AM.

  11. #11
    Forum Contributor
    Join Date
    01-26-2012
    Location
    Mumbai
    MS-Off Ver
    Excel 2013
    Posts
    154

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    yeahhhhhhhhhhhhh!!!!!!your one works ,i am so glad it does ,since i wanted to first after this job then proceed to 1st delete blank rows and then 2 nd paste content of G into E lest value of E is blank ,i modified your code a little bit like follows for the first part

    i.e.deleting blank rows if value of cell in column A is empty


    Please Login or Register  to view this content.
    I have kept the fill in the code above so that if you gimme a little hint ,i can delete the blank row ,

    Thanks so much ,

    Amlan
    Last edited by amlan009; 07-01-2012 at 05:39 AM. Reason: Code was misentered

  12. #12
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,040

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    Why with that Loop approach?

    Here:

    Please Login or Register  to view this content.

  13. #13
    Forum Contributor
    Join Date
    01-26-2012
    Location
    Mumbai
    MS-Off Ver
    Excel 2013
    Posts
    154

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    Please give me solution with loop ,i will remain forever indebted ,i am a huge fan of "For loop"....the other code looks like dracula but works great ,but "for "loop looks cute like a baby but doesn't work !

    It will take you 3 seconds max ,but it will be loads of knowledge for me !

    I tested yours ,it works like a dream !

    So i put your entirerow.delete in mine but it refuses to behave ,


    Please Login or Register  to view this content.
    i know i miss something very minute !plz help ,plz plz !

  14. #14
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,040

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    Here:

    Please Login or Register  to view this content.

  15. #15
    Forum Contributor
    Join Date
    01-26-2012
    Location
    Mumbai
    MS-Off Ver
    Excel 2013
    Posts
    154

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    Dear ,

    Thank you!!!!!!!!!!!!!!!!!

    Using the logic you provided i did proceed to solve the third and final part of the project and that is when the cell in E is empty ,i wanted to paste "Not Found " in it


    I have attached the Input and output sheets ,

    It does paste "Not found " in the range but actually goes on to paste the values below the range ,

    Please Login or Register  to view this content.

    Please don't get angry !

    Thanks in advance ,

    After this i need to take it to a seperate tab also ,but i know how to do that ,

    Regards ,


    Amlan

  16. #16
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,040

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    Actually, this won't work.
    Because after you delete whole row it will skip E.x value and won't make it Upper.

    You should first delete all rows and then start loop again to convert letters.

    Edit: You can test by makeinf E3 to E10 all small letters and delete one cell in same range in A column (i.e. A5).
    Last edited by zbor; 07-01-2012 at 06:27 AM.

  17. #17
    Forum Contributor
    Join Date
    01-26-2012
    Location
    Mumbai
    MS-Off Ver
    Excel 2013
    Posts
    154

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    Finally this works after i tried out many variations but i fail to understand why the same operation cannot take place inside a single for loop and i have to define 2 for loop's thereby increasing execution time ,also "Not found "gets pasted below the range as well -see attached output file .

    The code goes like this


    Please Login or Register  to view this content.
    Attached Files Attached Files

  18. #18
    Forum Contributor
    Join Date
    01-26-2012
    Location
    Mumbai
    MS-Off Ver
    Excel 2013
    Posts
    154

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    Oh ,i see you already posted a reply ,actually i posted my above solution after i read your solution ...

    My revised solution above works (see the attached file ) but i fail to understand why the "Not Found " after the range ,but something in your thread makes me feel that the rows which got deleted ,this not found are exactly for those deleted row ,maybe defining a seperate subroutine and calling from the first subroutine will help ,

    Will give it a shot and let you know,

    Regards ,

    Amlan Dutta

  19. #19
    Forum Contributor
    Join Date
    01-26-2012
    Location
    Mumbai
    MS-Off Ver
    Excel 2013
    Posts
    154

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    Yahoooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo!!!!!!!

    What i guess did worked !(But after only i read your thread i understood that ,so huge thanks !!

    See the attached input and output files,

    what i did was make 2 seperate subroutines - i mean what you gave me ,i just made two seperate subroutines ,i already had a parent subroutine ,from that parent subroutine ,i then called this 2 subroutines and now it works like a dream ,

    I attach both the input and output files for your perusal ,


    The code goes like this ,
    Please Login or Register  to view this content.


    This works like a charm ,but we need to still take it to a seperate tab ,i think i can handle it ,but i will prefer help ....

    Regards ,

    Amlan Dutta

  20. #20
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,040

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    I would make them other way:

    First go through A column and delete blanks.
    Then go thorugh E column and Create upper or write "NOT FOUND" (use caps lock since it will convert it anyway into Upper after second running).

  21. #21
    Forum Contributor
    Join Date
    01-26-2012
    Location
    Mumbai
    MS-Off Ver
    Excel 2013
    Posts
    154

    Re: Changing lowercase to uppercase for identical values in column and copying to seperate

    But once we delete the A blank rows ,it still gets stored in the range which we at the start defined ,that is why the extra "NOT found " because the macro still think's that the range consumes the extra E used rows ,

    So ,with my 2 cent knowledge ,i think that using same parent subroutine wont be possible since deletion is defined post range definition and so when we do operations the range predefined is still in macro memory or is it something that i miss ,

    For deleting A blank rows and making E "NOt FOUND" i already did
    Please Login or Register  to view this content.
    But i suspect that it didnt work because of the exact reason you pointed out that some rows were already deleted inside the loop ...so i dunno how to do it now ,

    But doing seperate subroutines and calling through main routine works !


    This was first part of a extended project ...second part of which was filtering seperate tabs based on unique values in column E and naming tabs after those unique values (for which i used datapig excel explosion )but orefer i can write a macro ,

    i have posted that part of the project in thread


    http://www.excelforum.com/excel-prog...60#post2842860

    Will appreciate if you can have a look at that ,

    Thanks so much for the help in this thread !

    Regards ,


    Amlan Dutta
    Last edited by amlan009; 07-01-2012 at 07:03 AM. Reason: wrong url for thread

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1