Hi, i get a deligation warning while using the following code on a sharepoint-List:
If(
Dropdown_Bereich_2.Selected.Value <> "Alle";
Filter(DatabaseAddOnTool_Bestellungen;HFB = Dropdown_Bereich_2.Selected.Value; DatumB = Today()-1);
Filter(DatabaseAddOnTool_Bestellungen;DatumB = Today()-1))
The Part "DatumB = Today()-1" seems to couse the warning.
Solved! Go to Solution.
Hi @NeoLexx ,
Yes - Dates are only partially Delegable, but you can try this
With(
{
wDatum:
DateAdd(
Today();
-1;
Days
)
};
Filter(
DatabaseAddOnTool_Bestellungen;
(
Dropdown_Bereich_2.Selected.Value = "Alle" ||
HFB = Dropdown_Bereich_2.Selected.Value
) &&
DatumB = wDatum
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Hi @NeoLexx ,
Yes - Dates are only partially Delegable, but you can try this
With(
{
wDatum:
DateAdd(
Today();
-1;
Days
)
};
Filter(
DatabaseAddOnTool_Bestellungen;
(
Dropdown_Bereich_2.Selected.Value = "Alle" ||
HFB = Dropdown_Bereich_2.Selected.Value
) &&
DatumB = wDatum
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Thx, that worked fine for me.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
190 | |
52 | |
51 | |
36 | |
33 |
User | Count |
---|---|
267 | |
97 | |
84 | |
72 | |
69 |