Power Query - program a column to automatically fill values in

anilomevina

New Member
Joined
Jan 2, 2020
Messages
23
Office Version
  1. 365
Hello and good afternoon,
I was wondering if there is a way to automatically fill column D with AAAABBBBCCCCDDDD(and so on) as part of a Power Query.
Thank you in advance.

1578494891170.png
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
is possible to post a link to the shared txt file via GoogleDrive, OneDrive or any similar (if there is no confidential data)?
 
Upvote 0
I only did
Code:
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    #"Filled Down" = Table.FillDown(Source,{"Point"})
in
    #"Filled Down"
 
Upvote 0
ok, so what I should do with these files? or better, what are you doing with these files?

or do what you want then share result xlsx file the same way as txt files
 
Upvote 0
ok, so what I should do with these files? or better, what are you doing with these files?
I have created a Query that organises the files in a way where there is a column for Actual and a column for Nominal data. However, for each file, there are ABCD points as well as xyz directions so I am trying to fill the entire point column (that I have screenshooted in my first message) with AAAABBBBCCCCDDDD (each letter repeates itself three times, once for x, once for y and once for z)
 
Upvote 0

Forum statistics

Threads
1,226,125
Messages
6,189,133
Members
453,525
Latest member
compugor

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