Unlocking the Power of PowerApps - Watch *This* Step By Step Demo!

Поділитися
Вставка
  • Опубліковано 5 жов 2024

КОМЕНТАРІ • 33

  • @heathchancey604
    @heathchancey604 6 днів тому +1

    Steph, this is AWESOME! I had a need for this and came across your video It has everything I needed. You rock!!

  • @willem0690
    @willem0690 5 місяців тому +1

    Great video, the only thing I get stuck with an error when multiple people try to bid on the same item: Network error when using Patch function: Conflicts exist with changes on the server, please reload. Is there a way to show a message "You have been outbid", instead of the error?

  • @stevec8781
    @stevec8781 Рік тому +3

    Great video!

  • @StephMarshall
    @StephMarshall  Рік тому +5

    🎬 Code Snippet
    If(
    !IsBlank(varItem.'Last Bidder'),
    Office365Outlook.SendEmailV2(
    varItem.'Current Bidder'.Email,
    "Silent Auction - You've been outbid!",
    "Hello " & varItem.'Current Bidder'.DisplayName & ",You have been outbid by " & User().FullName & ", the current bid is $" & (Value(LabelBidAmount.Text) + Value(lblBidAmt.Text)) & "!!!
    Head back to the auction to outbid them.
    ",
    {Cc: User().Email}
    )
    );
    Patch(
    'Art Auction Photos',
    varItem,
    {
    Bid: (Value(LabelBidAmount.Text) + Value(lblBidAmt.Text)),
    Bids: (Value(lblBidsCount.Text) + 1),
    'Last Bidder': {
    Claims: "i:0#.f|membership|" & If(
    IsBlank(varItem.'Current Bidder'.Email),
    User().Email,
    varItem.'Current Bidder'.Email
    ),
    Department: "",
    DisplayName: "",
    Email: "",
    JobTitle: "",
    Picture: ""
    },
    'Current Bidder': {
    Claims: "i:0#.f|membership|" & User().Email,
    Department: "",
    DisplayName: "",
    Email: "",
    JobTitle: "",
    Picture: ""
    }
    }
    );

  • @HADarsh-gz7hz
    @HADarsh-gz7hz Рік тому +1

    Thanks alot....when copilot would be roled out

    • @StephMarshall
      @StephMarshall  Рік тому

      Here's a Microsoft release - www.microsoft.com/en-us/microsoft-365/blog/2023/05/09/introducing-the-microsoft-365-copilot-early-access-program-and-new-capabilities-in-copilot/

  • @tunjiabayomi
    @tunjiabayomi 6 місяців тому +1

    Great Video. But that timer will run to Negative numbers when set date elapses and Continue when it get to Zero

    • @StephMarshall
      @StephMarshall  6 місяців тому

      Great point! This app ended after a specific date and was taken down.

  • @kingquadri1850
    @kingquadri1850 Рік тому

    Excellent Marshall ❤

  • @Eyak_8477
    @Eyak_8477 Рік тому

    This is a super helpful video. Only thing I am having a hard time grasping is how you coded the box between the Up and Down buttons on the second page. I didn’t see in the video were you went over that portion. Thank you!

    • @StephMarshall
      @StephMarshall  Рік тому +2

      The code for the down arrow is:
      If(varBid>0,Set(varBid,varBid - Value(lblIncrementAmt.Text)),0)
      and the up arrow is:
      If(varBid>=0,Set(varBid,varBid + Value(lblIncrementAmt.Text)),0)

    • @Eyak_8477
      @Eyak_8477 Рік тому

      @@StephMarshall thank you so much!

    • @TheDyers666eve
      @TheDyers666eve 9 місяців тому

      @@Eyak_8477 Were you able to get this to work? I cannot get the box between the arrows to function at all for some reason.

    • @jois25perez
      @jois25perez 5 місяців тому

      @@StephMarshall I think you just gave us the code for the up and down arrows. What we are looking for here is the code for the one in between. The one that the number changes anytime you click on the up or down arrow.

    • @jois25perez
      @jois25perez 5 місяців тому

      I found the answer . It is "$"& varBid

  • @ZombieEtiquette
    @ZombieEtiquette 11 місяців тому

    Awesome video! Thank you for making this. I did not see you say anything about "Set Max Bid". How did you have that set up? Would you need a separate list to store all the user's names and max bids?

    • @StephMarshall
      @StephMarshall  9 місяців тому +1

      It's the same list, the max bid amount was a fixed amount set by the client. on the button click for Set Max bid Set(varBid,50)

  • @venukolar7999
    @venukolar7999 Рік тому +1

    Hi Madam, How did you upload all the images in SharePoint. please let me know. I got stuck in here to proceed further. In the SharePoint list the Name column is of type "Text" right, how didi the images fit in that column. Please do clarify. Thank you.

    • @StephMarshall
      @StephMarshall  Рік тому

      Hi, are you referring to the images that are up for auction or images in the app?

  • @junmelendez7651
    @junmelendez7651 Рік тому +1

    super nice!

  • @mikesneider21
    @mikesneider21 Рік тому +1

    Awesome! 🥳🥳

  • @fitriidrus3435
    @fitriidrus3435 Рік тому

    Awesome apps,may i know what is code for text label "Label Bid Amount"?

  • @Cynthia200
    @Cynthia200 Рік тому

    Hello, could you kindly make a video on how to make this app responsive?

  • @fitriidrus3435
    @fitriidrus3435 Рік тому

    Can i have your email address? I want to ask a few thing regards the steps to build similar apps like this.

    • @StephMarshall
      @StephMarshall  Рік тому

      Hello! If you ask your questions here I'll answer them and everyone can learn something!