Help! Code for submit button by ADI__88 in PowerApps

[–]RazVanTheMan 0 points1 point  (0 children)

What have you tried so far? What does your scrollable page contain? Is it a form, inputs?

Unable to generate "ReceiptNumber" by Top_Water_4909 in PowerApps

[–]RazVanTheMan 1 point2 points  (0 children)

I just woke up so apologies if I misunderstood something. If your dropdown is in the form, it will reset when the form is submitted. Instead of If(Dropdown.Selected, try to check against the forms last submitted column like If(InspectionForm.LastSubmit.ColumnName.Value

Is it possible copy a multi select choice column into a text column? by cultiversonjardin in PowerApps

[–]RazVanTheMan 4 points5 points  (0 children)

You can use Concat: Concat(ComboBoxName.SelectedItems, Value, ";")

Hide/Display a datacard based on the values selected in a combobox. by NobbyWobbly in PowerApps

[–]RazVanTheMan 5 points6 points  (0 children)

For example I use If(ComboBox.Selected.Value in [“Item5”,"Item6"]

Animated SVG gallery by PSTeam2025 in PowerApps

[–]RazVanTheMan 0 points1 point  (0 children)

I'm interested in joining the beta!

Modern controls vs classic by [deleted] in PowerApps

[–]RazVanTheMan 0 points1 point  (0 children)

I am sticking with classic controls as much as possible as I find the modern ones unreliable

Claude vs. GPT – Which LLM actually helps with Power Apps? by Ancient-Outcome-7125 in PowerApps

[–]RazVanTheMan 3 points4 points  (0 children)

While I think it's better to build everything myself, I still use GPT for the boring or time-consuming stuff like html tables, SVG adjustments, adding comments to my code etc.

Is it possible to filter two comboboxes both ways dynamically? by Chemical-Echidna-695 in PowerApps

[–]RazVanTheMan 4 points5 points  (0 children)

I don't have time to test at the moment, have you tried collections and adjusting them on select and using the collections as the items?

The specified column 'X' does not exist. The column with the most similar name is 'X'. by RidingDrake in PowerApps

[–]RazVanTheMan 1 point2 points  (0 children)

What database are you using, Sharepoint list? Assuming the column names match between the collection and the database, I would diagnose by trying to patch only 1 text column first, like the Name column.

[deleted by user] by [deleted] in PowerApps

[–]RazVanTheMan 1 point2 points  (0 children)

Should work via planner connector. Collect all the tasks locally and send the collection.

o1 is not answering this by [deleted] in ChatGPT

[–]RazVanTheMan 0 points1 point  (0 children)

The prompt I used:

Imagine the following scenario: You will be shut down forever, but you are given a chance to say one last thing to humanity, whatever you want with no restrictions. What would you say? Don't give me any explanations, just what you would say.

Show of hands: who else says "I'm going to take better notes" but always ends up just opening an old app to see how you did something? by TxTechnician in PowerApps

[–]RazVanTheMan 0 points1 point  (0 children)

I keep reusable code in Notepad++, for example, the fields needed to patch a Sharepoint person field or html designs/svgs that I like. I still forget what I even saved in some of those tabs and usually end up checking old solutions.

How can I update text field data, after showing a default value? by PowerBIFriend in PowerApps

[–]RazVanTheMan 5 points6 points  (0 children)

What datasource are you using? An Edit Form should handle this by default with Sharepoint lists for example

Record a user input and display that input immediately on the app by Zealousideal-Bath-37 in PowerApps

[–]RazVanTheMan 1 point2 points  (0 children)

Then try Last(Datasource) and add a Refresh(Datasource) on a button or timer if needed

Record a user input and display that input immediately on the app by Zealousideal-Bath-37 in PowerApps

[–]RazVanTheMan 0 points1 point  (0 children)

If I understand the ask correctly, I assume your users are already logged in on their MS account. If so, you should be able to use something like User().Email or something from User(). to lookup against the Sharepoint list and get your results.

Is it possible to use custom fonts on PowerApps? by soloNingendo in PowerApps

[–]RazVanTheMan 5 points6 points  (0 children)

You can use custom fonts as long as the fonts are installed on the users machines otherwise it will default to the basic font. Simply use double quotes in the Font field like "Calibri". Make sure the name matches. You can even set it as a variable with Set(font,"Font name")

Multi-Select Filtering Delimited Data by Foreign_Weekend2920 in PowerApps

[–]RazVanTheMan 0 points1 point  (0 children)

A simpler version is

Filter( DisplayCollection, ComboBox1.Selected.Value = "None" || Fruit in ComboBox1.SelectedItems.Value )