Hi @WarrenBelz
I have a bidding powerapp with SharePoint as the datasource. The app landing page has a gallery which looks like below where user can bid for items.

When two users access the app at the same time and bid for items, two winning bids are being created which is logically wrong.
When i access User A screen and User B screen after bidding, below screenshot is being shown which is wrong. Both cannot be winners.

May i know how to prevent this? This is the below code when user submits the bid successfully.
Bid Submission Code
If(
IsBlank(
LookUp(
Bid_Transaction,
Item_No = quickbidselected.'Item No',
Bid_Price
)
),
Patch(
Bid_Transaction,
Defaults(Bid_Transaction),
{
'Name (Title)': Office365Users.UserProfile(User().Email).DisplayName,
Designation: Office365Users.UserProfile(User().Email).JobTitle,
Division: Office365Users.UserProfile(User().Email).Department,
Bid_Price: Value(Label27_9.Text)+5,
Bided_DateTime: Now(),
Item_No: quickbidselected.'Item No',
Email: User().Email,
Item_Name: quickbidselected.'Item Name'
}
))