• Skip to main content
  • Skip to header right navigation
  • Skip to site footer

My Online Training Hub

Learn Dashboards, Excel, Power BI, Power Query, Power Pivot

  • Courses
  • Pricing
    • Free Courses
    • Power BI Course
    • Excel Power Query Course
    • Power Pivot and DAX Course
    • Excel Dashboard Course
    • Excel PivotTable Course – Quick Start
    • Advanced Excel Formulas Course
    • Excel Expert Advanced Excel Training
    • Excel Tables Course
    • Excel, Word, Outlook
    • Financial Modelling Course
    • Excel PivotTable Course
    • Excel for Customer Service Professionals
    • Excel for Operations Management Course
    • Excel for Decision Making Under Uncertainty Course
    • Excel for Finance Course
    • Excel Analysis ToolPak Course
    • Multi-User Pricing
  • Resources
    • Free Downloads
    • Excel Functions Explained
    • Excel Formulas
    • Excel Add-ins
    • IF Function
      • Excel IF Statement Explained
      • Excel IF AND OR Functions
      • IF Formula Builder
    • Time & Dates in Excel
      • Excel Date & Time
      • Calculating Time in Excel
      • Excel Time Calculation Tricks
      • Excel Date and Time Formatting
    • Excel Keyboard Shortcuts
    • Excel Custom Number Format Guide
    • Pivot Tables Guide
    • VLOOKUP Guide
    • ALT Codes
    • Excel VBA & Macros
    • Excel User Forms
    • VBA String Functions
  • Members
    • Login
    • Password Reset
  • Blog
  • Excel Webinars
  • Excel Forum
    • Register as Forum Member

If total columns > x then |Power Query|Excel Forum|My Online Training Hub

You are here: Home / If total columns > x then |Power Query|Excel Forum|My Online Training Hub
Avatar
sp_LogInOut Log In sp_Registration Register
sp_Search Search
Advanced Search
Search
Forum Scope




Match



Forum Options



Minimum search word length is 3 characters - maximum search word length is 84 characters
sp_Search Search
sp_RankInfo
Lost password?
sp_CrumbsHome HomeExcel ForumPower QueryIf total columns > x then
sp_PrintTopic sp_TopicIcon
If total columns > x then
Avatar
John Langham-Service
Member
Members
Level 0
Forum Posts: 51
Member Since:
July 17, 2018
sp_UserOfflineSmall Offline
1
February 2, 2021 - 1:51 am
sp_Permalink sp_Print

Is it possible to do if then in power query i.e. 

If there are more than 4 columns then delete column names >4

else continue processing

?

regards

John

Avatar
Philip Treacy
Admin
Level 10
Forum Posts: 1514
Member Since:
October 5, 2010
sp_UserOfflineSmall Offline
2
February 2, 2021 - 9:23 am
sp_Permalink sp_Print sp_EditHistory

Hi John,

Yes, you don't even need to check if there are more than 4 columns, just select the columns you want and then right click on a selected column header -> Remove other columns

See this example file.

Regards

Phil

.

remove other columnsImage Enlarger

Avatar
John Langham-Service
Member
Members
Level 0
Forum Posts: 51
Member Since:
July 17, 2018
sp_UserOfflineSmall Offline
3
February 4, 2021 - 11:46 pm
sp_Permalink sp_Print

Hi Phil delete was probably the wrong action to include, as a follow up question how about the opposite.

If there are 6 columns do x if there are > 6 do y or if 4 columns do z

 

Basically I want to merge every two columns after the first two so 3+4 5+6 the files are pdfs and I have no control over how many columns it might have so at the moment it errors out if 5 and 6 are missing and there is always a final total column so an odd number and I delete that final column using your suggestion.

 

John

Avatar
Philip Treacy
Admin
Level 10
Forum Posts: 1514
Member Since:
October 5, 2010
sp_UserOfflineSmall Offline
4
February 10, 2021 - 1:22 pm
sp_Permalink sp_Print

Hi John,

See attached file - This code merges pairs of columns as you describe : 3+4, 5+6 etc and will work for any number of columns providing it's an odd number as you said the last col will always be a total. It also removes the last column regardless of how many columns there are in the table.

let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
Names = Table.ColumnNames(Source),

MergedCols = List.Generate(

() => [x = Source, y = 2 ],

each [y] < List.Count(Names),

each [x = Table.CombineColumns([x], {Names{[y]}, Names{[y]+1}}, Combiner.CombineTextByDelimiter("", QuoteStyle.None), "Merged"&Text.From(y)), y = [y] + 2],

each [x]

),

MergedTable = MergedCols{List.Count(MergedCols)-1},
#"Removed Columns" = Table.RemoveColumns( MergedTable, Table.ColumnNames(MergedTable){List.Count( Table.ColumnNames(MergedTable)) -1})
in
#"Removed Columns"

 

Regards

Phil

sp_Feed
Go to top
Forum Timezone: Australia/Brisbane
Most Users Ever Online: 245
Currently Online:
Guest(s) 11
Currently Browsing this Page:
1 Guest(s)
Top Posters:
SunnyKow: 1432
Anders Sehlstedt: 870
Purfleet: 412
Frans Visser: 346
David_Ng: 306
lea cohen: 219
A.Maurizio: 202
Jessica Stewart: 202
Aye Mu: 201
jaryszek: 183
Newest Members:
John Chisholm
vexokeb sdfg
John Jack
Malcolm Toy
Ray-Yu Yang
George Shihadeh
Naomi Rumble
Uwe von Gostomski
Jonathan Jones
drsven
Forum Stats:
Groups: 3
Forums: 24
Topics: 6210
Posts: 27236

 

Member Stats:
Guest Posters: 49
Members: 31888
Moderators: 3
Admins: 4
Administrators: Mynda Treacy, Philip Treacy, Catalin Bombea, FT
Moderators: MOTH Support, Velouria, Riny van Eekelen
© Simple:Press —sp_Information

Sidebar

Blog Categories

  • Excel
  • Excel Charts
  • Excel Dashboard
  • Excel Formulas
  • Excel PivotTables
  • Excel Shortcuts
  • Excel VBA
  • General Tips
  • Online Training
  • Outlook
  • Power Apps
  • Power Automate
  • Power BI
  • Power Pivot
  • Power Query
microsoft mvp logo
trustpilot excellent rating
Secured by Sucuri Badge
MyOnlineTrainingHub on YouTube Mynda Treacy on Linked In Mynda Treacy on Instagram Mynda Treacy on Twitter Mynda Treacy on Pinterest MyOnlineTrainingHub on Facebook
 

Company

  • About My Online Training Hub
  • Disclosure Statement
  • Frequently Asked Questions
  • Guarantee
  • Privacy Policy
  • Terms & Conditions
  • Testimonials
  • Become an Affiliate

Support

  • Contact
  • Forum
  • Helpdesk - For Technical Issues

Copyright © 2023 · My Online Training Hub · All Rights Reserved. Microsoft and the Microsoft Office logo are trademarks or registered trademarks of Microsoft Corporation in the United States and/or other countries. Product names, logos, brands, and other trademarks featured or referred to within this website are the property of their respective trademark holders.