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

Getting a date, task, and name from a table.

I tried figuring this out in Excel, but to no avail. At my work, we have a series of tasks that have to be done every 90 days. The date that a task is completed is being saved to a database in SQL. Within PowerApps, I want to create a screen that shows when an employe's next date to complete a task (numbered Task 1-5) and how many they have done it throughout the year.   When an employee completes a task, he or she will have 90 days to complete it again.  I know to add dates, I would use the following formula.  

 

 

DateAdd(DateValue(Text(DateValue)),Value(Text(DateValue)),Days)

 

Here's the table:

EarnDate Id TaskEmployee
9/1/20171234Task1 Bob
9/2/20171235Task2Brendon
9/3/20171236Task3Jane
9/4/20171237Task4**bleep**
9/5/20171238Task5Harry
9/6/20171239Task6Steve
9/7/20171240Task7Ryan
9/8/20171241Task8Artist
9/9/20171242Task9Abel
9/1/20171234Task3Bob
9/2/20171235Task4Brendon
9/3/20171236Task1Jane
9/4/20171237Task5**bleep**
9/5/20171238Task9Harry
9/6/20171239Task6Steve
9/7/20171240Task3Ryan
9/8/20171241Task9Artist
9/9/20171242Task8Abel

 

 

I'm applying this formula to a Text Label under the Text attribute. The part I'm having difficulties with is pulling the correct date, task and person from the table. Now, would that be done by doing this? This is a simliar formula from an earlier post based on getting an inventory number.

 

Text(
DateValue( Mid( First( Sort( Filter(database1, StartsWith(Task1, PersonDropdown.Selected.Value)), Task1, Descending)).Task1 Len(TextInput1.Text) + 90 )

 Is this close?

 

v/r

Brendon

 

 

 

7 REPLIES 7
BitLord69
Memorable Member
Memorable Member

Let me ask a few things first: do all the employees have an account so they can use PowerApps? Will they be allowed to see tasks belonging to someone else?

 

If they have an account but are allowed to see only their own tasks you can use User().FullName function to filter, IF their full name is saved in the SQL db.

 

If all of that is true I would put the data in a gallery, and also add an extra label with the future date. If the EarnData is older than 90 days, do not display anything, otherwise display the date 90 days after.

 

The label's Text would look something like this:

 

If(DateAdd(ThisItem.EarnDate, 90) > Now(), DateAdd(ThisItem.EarnDate, 90), "")

The gallery's Items property would look something like:

 

SortByColumns(Filter(database1, Employee = User().FullName), "Task", "EarnDate", SortOrder.Descending)

Try it out and give a shout back if you need more info. I haven't tried any of this specific code in an actual app, so there might be a few typos in there.

 

Good luck!

 

@BitLord69

 

All the employees have access to Power Apps.  It's not an issue if an employee sees another's data. This information was originally on a Google spreadsheet and a report was in a different sheet all together. What makes the task a bit more difficult is that the original script to calculate the dates was in the now depricated Google Script.

 

In the old report wouild show when the expiration date was going to occur. It was formatted like this :

 

name	  task1	          task2 	 task3	          task4
bob	1/2/2018	12/30/2017	11/23/2017	12/31/2018

 

Using the gallery as a starting part works so far, as does your suggested formulas.  The next step for me is to create a chart using Text Labels.  However I have concerns about having 10 different galleries (as there are 10 different tasks/certifications per employee)  on one screen sending a call to the database at once. Could cause performance issues. Thank you for your help so far. 

 

v/r

Brendon

 

 

 

What about putting the user names in a listbox, using a call to Distinct or hard coding them, and then you filter the data in the gallery based on the selected user? That way you would get a list over the different tasks per user. You can make the gallery horizontal so it looks very similar to your old report.

 

If the task names are static you can just make a panel with labels. In each label you make a call with Lookup to get the date for the specific task for the selected user. That way you don't have to use a gallery.

 

Another approach is to put the task names in a separate table and then you can create a gallery by combining a user and a task. That way both the names of the tasks and the number of tasks can change over time.

 

If you think a particular approach is interesting but unclear, get back and I'll try to make it clearer.

 

If you can and want, post a screen shot of what you have, or maybe a mockup of what you want so we can have something more visible to talk about.

 

 Good luck!

@BitLord69

My current plan is as follows:

 

1. Create a panel with labels  of all the required tasks and dates. (done)

2. Use a drop down filter to change the values of the labels when a user is selected. 

 

I think applying the Filter or Lookup function to the labels could be a good course of action. Under the Total section, I would use the COUNTROWS function that would add the number of times a task has occured over the past 90 days. 

 

As for the date function, I know that I can use the LOOKUP function to search for the log to find the correct task in the table. Then use DATEADD function to add 90 days to find the date of expiration. 

 

Here's a current screenshot:Capture.PNG

 

 

 

 

 

 

 

I think I'm getting close , but I've ran into another metaphorical brick wall. I think the issue might be due to my Db design, but here's my problem. 

 

When I use the LOOKUP function, it simply returns the first record. I know that the LOOKUP function is designed to search a table and return a single value from a record.  When using it, is there a way to get the last record from the table? And, am I able to use LOOKUP to search multiple columns?

 

For example

 

DateAdd(LookUp('[dbo].[CmStats]', Cm2HoistType1 || Cm2HoistType2 || Cm2HoistType3 = "Insert" ,StartDate), 90,Days) 

 

 

 

Hi @BrendonBrooksP1

 

To access last item form data source you can use Last() function.

 

Doc: https://powerapps.microsoft.com/en-us/tutorials/function-first-last/

 

LookUp does not only provide value of one column, but can also return a whole record if the column is not specified.

 

Yes you can search multiple columns in a LookUp. For example your condition should be written like this:

 

DateAdd(LookUp('[dbo].[CmStats]', (Cm2HoistType1 = "Insert") || (Cm2HoistType2 = "Insert") || (Cm2HoistType3 = "Insert"),StartDate), 90,Days) 

 

@Anonymous

 

Thanks for the formatting correction! Your answer definately points me in the right direction. 

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 in the Forums 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 of SolutionsSuper UsersNumber of Solutions @anandm08  23 @WarrenBelz  31 @DBO_DV  10 @Amik  19 AmínAA 6 @mmbr1606  12 @rzuber  4 @happyume  7 @Giraldoj  3@ANB 6 (tie)   @SpongYe  6 (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. Community MembersSolutionsSuper UsersSolutions @anandm08  10@WarrenBelz 25 @DBO_DV  6@mmbr1606 14 @AmínAA 4 @Amik  12 @royg  3 @ANB  10 @AllanDeCastro  2 @SunilPashikanti  5 @Michaelfp  2 @FLMike  5 @eduardo_izzo  2   Meekou 2   @rzuber  2   @Velegandla  2     @PowerPlatform-P  2   @Micaiah  2     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 Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27     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 Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8   SunilPashikanti8

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