cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

GET WEEK NUMBER FROM CURRENT DATE

Hello All,

 

I would want some help to get the week number of current date. I have added the below function to get the current date. If some one could help me to get the week number it would be of great help.

 

convertFromUtc(utcNow(),'India Standard Time','dd/MM/yyyy')
27 REPLIES 27
Pstork1
Most Valuable Professional
Most Valuable Professional

Try this formula

add(div(dayOfYear(utcNow()),7),1)

 



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.
CFernandes
Most Valuable Professional
Most Valuable Professional

@nagaraj007 

 

@Pstork1  formula works 🙂

 

You can also find some more ideas in the comments for the thread, https://powerusers.microsoft.com/t5/Power-Automate-Ideas/How-to-calculate-week-number-in-a-year-in-f... 

 

If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!

Will it work for all years? As I saw in one of the forums the below function works only for 2019. Please confirm. @Pstork1 

Pstork1
Most Valuable Professional
Most Valuable Professional

The function should work for any year.  It is currently based on UTC.  If you want it for India time zone then use this one.

add(div(dayOfYear(convertFromUtc(utcNow(),'India Standard Time','U')),7),1)

 



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.
Amanthaper
Responsive Resident
Responsive Resident

edited -

Does this also work on Power Automate Desktop?

Power Automate Desktop doesn't use the same functions as Power Automate, so no I don't think it will work.



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

It doesn't seem to work in 2021. It returns '21' for me today while we're currently in week 20, according to my calendar. I suppose I could replace the '1' in the formula with '2' but then it will likely not work correctly for next year, I would expect?

 

EDIT: or it could be because my calendar uses the ISO week number, which always starts on a Monday. That would explain. Unfortunately, that's the one I need. I'll try the method described here. It's more complex but if it does the job, then great.

ENRM
Helper III
Helper III

@nagaraj007 

Use the WeekNum and ISOWeekNum functions to determine the week number of a date.

These functions differ in how they determine the first week of the year (week 1):

  • WeekNum uses the week containing January 1 as the first week of the year. The result from this function can range from 1 to 54.

  • ISOWeekNum uses the week containing the first Thursday of the year as the first week of the year. This follows the ISO 8601 date and time standard definition for week numbering. The result from this function can range from 1 to 53. It is possible that 52 or 53 may be returned for the first days of January since the dates could belong to the last week of the previous year.

Use the second parameter to WeekNum to specify which day begins a week. You can provide either an Excel code number or use the StartOfWeek enumeration:


1, 17StartOfWeek.SundayWeek begins on Sunday. Default.
2, 11StartOfWeek.MondayWeek begins on Monday.
12StartOfWeek.TuesdayWeek begins on Tuesday.
13StartOfWeek.WednesdayWeek begins on Wednesday.
14StartOfWeek.ThursdayWeek begins on Thursday.
15StartOfWeek.FridayWeek begins on Friday.
16StartOfWeek.SaturdayWeek begins on Saturday.

 

ISOWeekNum always uses Monday as the start of the week. In Excel, the WeekNum function supports an addition code 21 that is not supported here; use ISOWeekNum instead.

If you pass a single number to these functions, the return value is a single result. If you pass a single-column table that contains numbers, the return value is a single-column table of results, one result for each record in the argument's table. If you have a multi-column table, you can shape it into a single-column table, as working with tables describes.

Syntax

WeekNum(DateTime [, StartOfWeek ])

  • DateTime - Required. Date/Time value to operate on.
  • StartOfWeek - Optional. Excel code or StartOfWeek enumeration that determines which day the week begins.

ISOWeekNum(DateTime)

  • DateTime - Required. Date/Time value to operate on. The week always begins on Monday.
Anonymous
Not applicable

Anyone managed to get the ISO week number working?

Would love to see an example.

Anonymous
Not applicable

Hi Oliver, have you managed? Using the example in the link I get "the expression is invalid"...

Anonymous
Not applicable

Here's how I managed to get ISO weeks

 

The 3 functions:

subtractFromTime(utcNow(), if(equals(dayofweek(utcNow()),0),6,sub(dayofweek(utcNow()),1)), 'Day')
 
addDays(outputs('Set_the_Monday'),3)
 
div(add(dayofyear(outputs('Thursday')),6),7)

 

 

 

angeloeef_0-1635434116151.png

 

Hi all,

 

I have the same problem in Power Automate flow to get the Week Number of Year, so this is my solution:

 

1. Get the year of current date:

varYear = utcNow('yyyy')

    

2. Get the Day of Week for the first day of the current year. For example Jan 01-2021 was Friday or 5 day of week (0-6 week count):

varFWD = dayOfWeek(concat(variables('varYear'),'-01-01'))

 

3.  Get the Day of Year for current date. For example, for Nov 25-2021 is 329 day (1-365):

varDY = dayOfYear(utcNow())
 

4.  Get the Day of Week for current date. For example, for Nov 25-2021 is Thursday or 4:

varDW =dayOfWeek(utcNow())
 
5. Apply the follow formula to get the Week Number of Year:
varWeekNum = ((varDY - varDW + varFDW - 1) / 7 )+ 1
For example for Nov 25, 2021 is varWeekNum ((329 - 4 + 5 - 1) / 7 ) + 1 = 48
 
In code is:
varWeekNum = add(div(add(add(add(variables('varDY'), mul(variables('varDW'), -1)),variables('varFWD')), -1),7),1)
 
 
Note: you can convert utcNow to your local zone time to avoid any problem with time differences.
 
I hope this works for you and best luck to all.

This was perfect and much simpler than the other solutions.

 

I have a table in an excel file in a Sharepoint site.

The first column in the table is the Week Number

Column 2 I have calculate the month from the week number. (For anyone who may find this useful)

=TEXT((MONTH(DATE(YEAR(2021),1,1)+$A2*7-1)*29),"MMMM")

 

Now I will use the calculation of the ISO week to update a row on a Google Sheet. Power Automate only lets us do 1 row at a time, so this make it update the row designated for the current week.

add(div(add(dayOfYear(variables('dateToday')),sub(dayOfWeek(concat('1/01/',formatDateTime(variables('dateToday'),'yyyy'))),1)),7),1)

Or replace the variable dateToday for utcNow()

Thank you for the formula ! 🙂

Hi so I am trying to calculate the number of weeks in a month using power automate, can you please assist me if you can

Please post this as a new question.  It will get more notice that way and others will be able to find the answer easier in the future.



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (778)