Hi,
Can someone help to remove numbers and a text from the left from each row?
Currently, i have
[1234567] has associated data:[94857382,193857639]
I need to have the following:
[94857382,193857639]
Thanks,
Hi,
Can someone help to remove numbers and a text from the left from each row?
Currently, i have
[1234567] has associated data:[94857382,193857639]
I need to have the following:
[94857382,193857639]
Thanks,
with Power Query
Currently [18238576,248375965] [11738495,249238575] [764548304,198378475,295767604,104956864] [183765663,1857569403]
EDIT![]()
// Table1 let Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content], ETAD = Table.TransformColumns(Source, {{"Currently", each Text.AfterDelimiter(_, ":"), type text}}) in ETAD
I noticed this is a MacOS so it may not work on this version 16.58
Last edited by sandy666; 01-03-2023 at 06:46 AM.
Old way:
Formula:
=IFERROR(RIGHT(A2,LEN(A2)-FIND(":",A2)),"")
New way:
Formula:
=TEXTAFTER(A2,":")
Trevor Shuttleworth - Retired Excel/VBA Consultant
I dream of a better world where chickens can cross the road without having their motives questioned
'Being unapologetic means never having to say you're sorry' John Cooper Clarke
Or try
=REPLACE(A2,1,FIND(":",A2&":"),"")
Or this:
Formula:
=MID(A2,FIND(":",A2)+1,1000)
Diana Tanase
If the solutions offered helped you to solve your problem, then mark the thread as SOLVED (thread tools in the top menu) and you can click on * to add reputation to those who helped you, as a way to say thank you !
@LilyN: you have a variety of formula solutions plus the Power Query option:
Formula:
=IFERROR(TEXTAFTER(A2,":"),"")
Formula:
=REPLACE(A2,1,FIND(":",A2&":"),"")
Formula:
=IFERROR(MID(A2,FIND(":",A2)+1,1000),"")
Formula:
=IFERROR(MID(A2,FIND(":",A2)+1,LEN(A2)),"")
Formula:
=IFERROR(RIGHT(A2,LEN(A2)-FIND(":",A2)),"")
Maybe time to test and pick one.
If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.
Also, you may not be aware that you can thank those who have helped you by clicking the small star icon located in the lower left corner of the post in which the help was given. By doing so you can add to the reputation(s) of those who helped.
@LilyN: Thanks for the rep.![]()
You are welcome and thanks![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks