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

Поділитися
Вставка
  • Опубліковано 6 січ 2025

КОМЕНТАРІ •

  • @heathchancey604
    @heathchancey604 3 місяці тому +1

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

  • @TheFisherTea
    @TheFisherTea 2 місяці тому

    Hi Steph, this is a great guide!
    Do you have the code for the bid amount between the arrows on the bid page @26:22? I think it wasn't mentioned in the video.

    • @StephMarshall
      @StephMarshall  2 місяці тому

      If you join my channel you would be able to download the entire file set. BUT....here you go 😻
      The code between the arrows is "$"& varBid where varBid is set by the arrows on either side, either up or down by the amount determined by the art piece size.
      The left arrow is: If(varBid>0,Set(varBid,varBid - Value(lblIncrementAmt.Text)),0)
      The right arrow is: If(varBid>=0,Set(varBid,varBid + Value(lblIncrementAmt.Text)),0)

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

    Great video!

  • @PetraKindle
    @PetraKindle Місяць тому

    Hi Steph, your video was very helpful and i built the Auction but i have a problem with the patch function. It shows me always an error: invalid argument type. expecting one of the following number date time datetime...., even when i copy your code, it's not working and i couldn't find the Problem. Do you have an idea?

  • @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?

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

    Excellent Marshall ❤

  • @willem0690
    @willem0690 8 місяців тому +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?

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

    super nice!

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

    Awesome! 🥳🥳

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

    🎬 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: ""
    }
    }
    );

  • @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 Рік тому

      @@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 8 місяців тому

      @@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 8 місяців тому

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

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

    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  Рік тому +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)

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

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

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

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

  • @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/

  • @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!