Power Query start at second instance of delimiter

btwice

New Member
Joined
Dec 16, 2014
Messages
17
Office Version
  1. 365
Platform
  1. Windows
I'm trying to pull a set of numbers after a delimiter using "_1" as a delimiter, but in some values in the data this delimiter shows up one time before the one that I want to pull from. How would I use an if statement to do something like below:

if delimiter("_1") > 0 then start at delimiter("_1") position 1 (second instance) else start at delimiter("_1") position 0 (first instance)

Appreciate any help, thanks.
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Sure, see below. Notice rows 4-6 can't pull the "Notification" out as it sees WEIMAR_1101, and I'm using _1 as a delimiter.

Book1
ABCDEFGHIJ
1VendorNameDate modifiedDate createdFolder PathOrderNotificationPackage typeOrder_VendorOrder_Notification
2VendorNB_town_45564190_118977199_vendor_KAA_RFP_22Mar24453734537345564190118977199RFP_45564190_Edison45564190_118977199
3VendorNB_town_45564215_118978175_vendor_KAA_RFP_22Mar24453734537345564215118978175RFP_45564215_Edison45564215_118978175
4VendorSI_WEIMAR_1101_31686873_124052853_2AA_Contractor_ConPkgComp453734537331686873ConP31686873_MEGA
5VendorSI_WEIMAR_1101_31686736_126433769_2AA_Contractor_PreFieldPkg453734537331686736PreF31686736_MEGA
6VendorSI_WEIMAR_1101_31686437_121497058_2AA_Contractor_PreFieldPkg453734537331686437PreF31686437_MEGA
Sheet1
 
Upvote 0
I believe you are trying to extract the 9 digits. I just recently answered a question on this website here.

You can add a Power Query column that extracts these 9 digits:

Power Query:
List.Select(Text.Split(
    Text.Select([Name],{"0".."9","_"}),"_"),(x)
    =>Text.Length(x)=9)


Got this from here.
 
Last edited:
Upvote 0
Solution
Yes this works great it looks like, your answer to my other question probably works as well but I used a different method to get the result I needed. Appreciate the help!!
 
Upvote 0

Forum statistics

Threads
1,216,146
Messages
6,129,142
Members
449,488
Latest member
qh017

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top