+ Reply to Thread
Results 1 to 7 of 7

Power Query Custom Column syntax help

  1. #1
    Registered User
    Join Date
    08-09-2016
    Location
    Boston
    MS-Off Ver
    Office 365
    Posts
    37

    Power Query Custom Column syntax help

    Greeting Excel Pro's

    I have a very large sheet that I've formulated a way to get the fiscal year and quarter for certain dates on that sheet. I do this for metric tracking purposes and its nice to be able to easily produce pivot charts that sorts to my fiscal quarters. (My fiscal year starts in April, we are currently in Q3'20)

    I track multiple dates this way, and have ended up needing multiple columns that are just taking up major real estate in my end user spreadsheet. Hiding them isn't a great solution for me either, and people copy and paste rows of data other places.

    I use power query on this data source to extract the data to another book, that I use for metric tracking. I never look at the extracted data, and could care less if there is the additional column there, thus enter custom columns. I'm very new to the power query syntax and not sure if its even possible to add the formulas that I have. Can anyone help?

    The two formulas I would need in power query syntax are as follows... (i've also attached a sample to see how they work in regular excel)

    =IF([@[START DATE]]<>"",YEAR([@[START DATE]])+IF(MONTH([@[START DATE]])>3,1,0),"")

    =IF([@[START DATE]]<>"","Q"&(CHOOSE(MONTH([@[START DATE]]),4,4,4,1,1,1,2,2,2,3,3,3)&"'"&(RIGHT([@[Start Year]],2))),"")

    There is 7 different dates I track in this way for fiscal reporting purposes and with 2 columns needed for each just for my fiscal numbers, that is 14 columns I can remove from my end user data source and hide in my power query/metric tracker.

    Hope this is clear... and please and thank you for any help you could provide!
    Attached Files Attached Files

  2. #2
    Forum Guru Bo_Ry's Avatar
    Join Date
    09-10-2018
    Location
    Thailand
    MS-Off Ver
    MS 365
    Posts
    7,222

    Re: Power Query Custom Column syntax help

    Please try at
    H2
    ="Q"&MOD(ROUNDUP(MONTH([@[START DATE]])/3,0)-2,4)+1&"'"&TEXT([@[START DATE]],"yy")+(MONTH([@[START DATE]])>3)


    Power Query add Custom column formula
    Please Login or Register  to view this content.

  3. #3
    Registered User
    Join Date
    08-09-2016
    Location
    Boston
    MS-Off Ver
    Office 365
    Posts
    37

    Re: Power Query Custom Column syntax help

    Thank you so much for your time, Bo_Ry.

    That almost works. Couple of errors. 1st, it seems that anything with a start date of Jan/Feb/Mar of 2019 returned Q0'19. Should be Q4'19.

    Also, without the separate column for the year, I lose sorting functionality by year. In a pivot table I add the YEAR above the Quarter in my rows section. It will allow a sort as follows..

    2019
    Q1'19
    Q2'19
    Q3'19
    Q4'19

    2020
    Q1'19
    Q2'19
    Q3'19
    Q4'19

    Without the year sort because "Q1'19" isn't recognized as a date, that same info gets sorted as follows

    Q1'19
    Q1'20
    Q2'19
    Q2'20
    Q3'19
    Q3'20
    Q4'19
    Q4'20

    I could manually sort my data, but I deal with 100's of pivot tables to sort all sorts of metrics, and its not feasible to manually sort them.

    Any other thoughts?
    Last edited by L.J.; 11-12-2019 at 02:42 PM.

  4. #4
    Forum Expert CK76's Avatar
    Join Date
    06-16-2015
    Location
    ONT, Canada
    MS-Off Ver
    MS365 Apps for enterprise
    Posts
    5,973

    Re: Power Query Custom Column syntax help

    Alternate approach. Rather than numeric functions, using Date functions.

    Please Login or Register  to view this content.
    For sorting... you either need to add sorting column or sorting prefix. But in general I'd recommend YY'Q# format for sorting purpose.
    "Progress isn't made by early risers. It's made by lazy men trying to find easier ways to do something."
    ― Robert A. Heinlein

  5. #5
    Forum Guru Bo_Ry's Avatar
    Join Date
    09-10-2018
    Location
    Thailand
    MS-Off Ver
    MS 365
    Posts
    7,222

    Re: Power Query Custom Column syntax help

    Please change -2 to +2

    = "Q" & Text.From(
    Number.Mod(Number.RoundUp(Date.Month([START DATE])/3,0)+2,4)+1) &"'" &
    Text.From(Number.Mod(Date.Year([START DATE])+ Number.From( Date.Month([START DATE]) > 3),100))

    Please see attached
    Attached Files Attached Files

  6. #6
    Registered User
    Join Date
    08-09-2016
    Location
    Boston
    MS-Off Ver
    Office 365
    Posts
    37

    Re: Power Query Custom Column syntax help

    Quote Originally Posted by CK76 View Post
    Alternate approach. Rather than numeric functions, using Date functions.

    Please Login or Register  to view this content.
    For sorting... you either need to add sorting column or sorting prefix. But in general I'd recommend YY'Q# format for sorting purpose.
    I took your advice and swapped to YY'Q#. I was able to swap around your provided code and get it implemented. That will give me the sort order I desire, and cut down on the number of needed columns.

    Thank you both for your time... you two are rockstars in my eyes!

  7. #7
    Forum Expert CK76's Avatar
    Join Date
    06-16-2015
    Location
    ONT, Canada
    MS-Off Ver
    MS365 Apps for enterprise
    Posts
    5,973

    Re: Power Query Custom Column syntax help

    You are welcome and thanks for the rep

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Custom Permutations Column in Power Query from two columns in the same Query
    By PaintPaddy in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-11-2019, 02:48 PM
  2. [SOLVED] Power Query Custom Column Formula
    By whiskeybravo91 in forum Excel Charting & Pivots
    Replies: 4
    Last Post: 08-06-2018, 11:10 AM
  3. Power Query Custom Column Formula
    By whiskeybravo91 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-06-2018, 09:57 AM
  4. [SOLVED] Power Query Custom Column: If number in columns a or b are less than 1 then 0 else 1
    By jekeith in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 05-15-2018, 10:31 AM
  5. [SOLVED] Insert a date value as a Custom Column in Power Query
    By heytherejem in forum Excel Charting & Pivots
    Replies: 2
    Last Post: 03-28-2018, 12:42 PM
  6. Power Query Formula/Syntax
    By mielkew27 in forum Excel General
    Replies: 2
    Last Post: 04-09-2017, 11:44 PM
  7. Help with Power Query Custom Column Formula
    By travis.cook21 in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-16-2016, 01:45 PM

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