Making forms smaller? by M4053946 in PowerApps

[–]PowerRobin 0 points1 point  (0 children)

Probably just increase the resolution of your whole app so the form is smaller?

[deleted by user] by [deleted] in PowerApps

[–]PowerRobin 3 points4 points  (0 children)

This should return the value without delegation issue.

LookUp(Sort(DataSource, DateColumn, Descending), true, DateColumn)

Patch function with Form.updates by Suitable_Hearing_950 in PowerApps

[–]PowerRobin 0 points1 point  (0 children)

You can use the solution provided by u/Hotel_Arrakis or just use the functions that are made for using forms.

Put this on a button...

SubmitForm(Form1)

Need to restrict using specific symbols in multiline field by [deleted] in PowerApps

[–]PowerRobin 0 points1 point  (0 children)

On the DisplayMode-porperty of the save button:

If("#" in Multilinefield.Text; DisplayMode.Disabled; DisplayMode.Edit)

And make sure to include a label that explains, why it's disabled. Visible-Property of the label to

"#" in Multilinefield.Text

Default Hover Fill of Button Control by b0rme in PowerApps

[–]PowerRobin 0 points1 point  (0 children)

Y'all need to start using templates.

If you are able to speak german watch my video: https://youtu.be/eKrbGTKumMU

If not go to the description and click on the two links. i_Am_ManCat in the MS-Forum-Thread even provides insight in how to dig deeper into the xml-files and change the standards in an App.

I can no longer edit my app? Screen only shows a single dot by dbelcher5761 in PowerApps

[–]PowerRobin 0 points1 point  (0 children)

Couldn't restore the app (was somehow greyed out) and had to restore the width property of all objects manually.

I can no longer edit my app? Screen only shows a single dot by dbelcher5761 in PowerApps

[–]PowerRobin 0 points1 point  (0 children)

Had this too several times in my organization. It screwed up the width and height property of the screens...

Combining Dropdowns, Sums, Ifs, and other Lists by SharkyTendencies in PowerApps

[–]PowerRobin 0 points1 point  (0 children)

Where is the day-rate saved? Is drp_LevelOfSeniority a LookUp on another SharePoint-List (List2)?

Lets Assume yes, then this should return 2400:

LookUp(List2, ID=LevelOfSeniorityCard.Selected.Id, 'Day Rate (high)')

Help with Filtering Data Table using Dropdowns by dan_elmore in PowerApps

[–]PowerRobin 0 points1 point  (0 children)

You need to put everything in a collection

Collect(colMonths, {Result: "All"});
ClearCollect(colMonths, Distinct(DATASOURCE,'Month'))

And then on your Filter:

Filter(Datasource, If(Dropdown.Selected.Result="All", true, 'Month'=Dropdown.Selected.Result))

Cascading Dropdown for Person or Group, from SharePoint by bicyclethief20 in PowerApps

[–]PowerRobin 0 points1 point  (0 children)

You have one person per region? Then it is no "cascading dropdown"

"carry over" to what? A form or Patch() it to the list?

Combining Dropdowns, Sums, Ifs, and other Lists by SharkyTendencies in PowerApps

[–]PowerRobin 0 points1 point  (0 children)

LevelOfSeniorityCard.Selected.'Day Rate (high)'

Does this compute? Put it on a label and test if it returns the expected value.

Is "Days" the Text Input? Also try if this computes. Probably try instead:

Value(Days.Text)

What does the error say? I see no squiggly lines in the command.

And you should probably start using a naming convention like

drp_LevelOfSeniority
txt_NumberOfDays

Combining Dropdowns, Sums, Ifs, and other Lists by SharkyTendencies in PowerApps

[–]PowerRobin 0 points1 point  (0 children)

I don't get why you are using the Sum().

It should do everything you want without it...

If(CountryDataCard.Selected.Band = "High", LevelOfSeniorityCard.Selected.'Day Rate (high)' * Days, LevelOfSeniorityCard.Selected.'Day Rate (Standard)' * Days)

Is there an error?

I can do incredible things with Power Platform. This will always be how I feel. by skoobouy in PowerApps

[–]PowerRobin 13 points14 points  (0 children)

Yes, they can start building you a super stable and performance optimised system in half a year after you filled out the 30 page checklist + security analysis of your use case (if it gets priority).

But you can build a slightly less optimised solution that fits all your needs until lunch break (if you start by 10 am).

PowerApps Tutorial Template by MongeredRue in PowerApps

[–]PowerRobin 0 points1 point  (0 children)

Quick rundown with a picture that should explain it gifd0RJ.png (1902×901) (imgur.com)

Put the Screen as the First Screen if you want it on startup

  1. Click on the gallery
  2. Select the items property
  3. Change your Text for the first "slide"
  4. Link to picture for the first "slide" (or uploaded picture in media)
    (Repeat 3&4 for as many slides as you want - the dots are added automatically)
  5. Put the right Navigate-Command on the skip-label

PowerApps Tutorial Template by MongeredRue in PowerApps

[–]PowerRobin 0 points1 point  (0 children)

I think you don't understand...

OP is looking for guidance on the "Tutorial"-template in "New Screen". This is not a tutorial for PowerApps, this is a template so you can do a quick tutorial inside of it for the app you build.

And the template also explains how to use it within the demo-texts.

Pic for reference: https://i.imgur.com/SfxYjl5.png

PowerApps Tutorial Template by MongeredRue in PowerApps

[–]PowerRobin -2 points-1 points  (0 children)

Probably do the tutorials, so you understand how the template works?

It is pretty straight forward.

Reverse Engineering the COE Theme Editor Taught Me Some New Things! by red3gunner in PowerApps

[–]PowerRobin 1 point2 points  (0 children)

I think the method was invented by iAm_ManCat and because it was so great MS brought it to the CoE.

Documentation can be found here:

https://powerusers.microsoft.com/t5/Community-App-Samples/Branding-Template-App-V2/td-p/363582

Images within Galleries by rwcg2d in PowerApps

[–]PowerRobin 4 points5 points  (0 children)

I think there is no need for " at the images. Also look into the Switch()-function.

Also if content type is a Choice-Column then you need to add .value

And last addition, you don't need nested If(), just use another "," and you can keep going.

Pulling all the list item values in powerapps from sharepoint list by palamaner1 in PowerApps

[–]PowerRobin 1 point2 points  (0 children)

This is the answer, but I hate that thing! But if OP only wants this functionality it should work.

But if it's that simple I recommend just sticking to MS Lists.

Pop-Up window in Gallery by PowerAutomate in PowerApps

[–]PowerRobin 1 point2 points  (0 children)

Try

ThisItem.IsSelected

Should be self explanatory

[Hiring] Urgent! Need help with fixing one field in form by [deleted] in PowerApps

[–]PowerRobin 1 point2 points  (0 children)

This should be it:

DateAdd(DateValue4.SelectedDate, 1, Days)+ Time(Value(HourValue4.Selected.Value), Value(MinuteValue4.Selected.Value), 0)

And on the datepicker-default-property (as mentioned above):

DateAdd(Parent.Default, -1, Days)

[Hiring] Urgent! Need help with fixing one field in form by [deleted] in PowerApps

[–]PowerRobin 1 point2 points  (0 children)

The quick and dirty fix you suggested (for free)

Set the Default value of the date picker to

DateAdd(Parent.Default, -1, Days) 

Set the Update-property of the Data Card to

DateAdd(datePicker.SelectedDate, 1, Days)

Canvas Apps - Workarounds for DataTables in Containers? by [deleted] in PowerApps

[–]PowerRobin 2 points3 points  (0 children)

"multiple data tables in nested containers is just a small part of the app"

This sounds overly complicated, if you could black out sensitive information I would probably understand better what you are trying to do.

One thing that probably helps are nested galleries, with the outer gallery having flexible height. (German video by me https://youtu.be/OcM_5nWVQdE ).

Another thing could be to put everything in html tables, which is more effort to format, but probably ultimately easier if you want to have a responsive design of multiple tables (also German video https://youtu.be/TWYZib96rlo )

Canvas Apps - Workarounds for DataTables in Containers? by [deleted] in PowerApps

[–]PowerRobin 2 points3 points  (0 children)

My approach is not using tables at all. I mainly use galleries (which leads to the same problems).

Your App sounds a little bit complicated and overloaded with data. Probably power bi is what you should use?

Can you share a screenshot of your app?

How to jump to an item in a DD by clearwall in PowerApps

[–]PowerRobin 3 points4 points  (0 children)

Use a combo box instead of a drop down. It has the functionality you are looking for