|
POST
|
I don't have a bug number, just a case number (#03950934).
... View more
07-10-2025
10:47 AM
|
0
|
2
|
1369
|
|
POST
|
I have run into this same problem also, getting errors in the console when opening the form. I opened a case with Esri on this issue and during testing, found that this occurred in Chrome and Firefox, but I could save the form in Edge. I created a sample feature layer to share with Esri. I couldn't save the form for this layer, but the support technician could on her end, so I'll have to find out if others in my organization are running into this.
... View more
07-10-2025
10:27 AM
|
0
|
0
|
1381
|
|
POST
|
Esri apparently fixed the bug and my code is working once again.
... View more
07-10-2025
10:04 AM
|
0
|
0
|
976
|
|
POST
|
I'm not talking about the width of the tab in the taskbar. The actual icon is smaller.
... View more
07-08-2025
07:37 AM
|
0
|
4
|
1361
|
|
POST
|
Why is the icon for ArcGIS Pro 3.5 in the taskbar not the same size as other applications?
... View more
07-08-2025
06:32 AM
|
0
|
11
|
1491
|
|
POST
|
I think you're confusing multi-line labels with multi-line expressions. This single-line expression works properly in my testing.
... View more
07-08-2025
06:17 AM
|
1
|
3
|
1401
|
|
POST
|
I am also experiencing errors in my code since the June 2025 update, which also uses Distinct and Filters. I've submitted a case to Esri, but what does your new code look like?
... View more
07-07-2025
08:00 AM
|
0
|
2
|
1172
|
|
POST
|
If you have a lot of of sites and parcels, this expression will take a long time to calculate. To see how it's progressing through the parcels loop, put this Console statement at line 32 Console(parcel.name); and check the Console tab.
... View more
07-01-2025
08:25 AM
|
1
|
2
|
1891
|
|
POST
|
You have to return a FeatureSet from a Data Expression to use in an element. Try using this as your return return FeatureSet({ fields: fields, features: features }); Also, when posting code, please use the Insert/Edit code sample button
... View more
07-01-2025
05:20 AM
|
1
|
7
|
1905
|
|
POST
|
Glad to help. And if it did solve your question, you can accept this as a solution in addition to David's reply
... View more
06-27-2025
10:16 AM
|
0
|
0
|
1067
|
|
POST
|
You could create an array of DateOnly holidays and test whether today as a DateOnly is in that array var holidays = [
DateOnly(2025, 0, 1), //Months are 0-based
DateOnly(2025, 0, 20),
DateOnly(2025, 1, 17),
etc...
];
if (Includes(holidays, DateOnly())) {
return "Closed (Federal holiday)";
} else {
iif(current >= start && current <= end, "Open now", "Closed");
}
... View more
06-27-2025
10:02 AM
|
1
|
0
|
1795
|
|
POST
|
If you had one entry per year in your data, you could have used the same GroupBy to create the two new columns dividing the sum of the federal (or local) investments by the sum of all investments. However, that won't work with multiple rows per year. Instead you take the grouped FeatureSet and run another GroupBy to calculate those numbers. var grouped = GroupBy(fs,"Year",
[
{
name: "Fed_Funding",
expression: "Fed_Fund_1 + Fed_Fund_2 + Fed_Fund_3",
statistic: "SUM"
},
{
name: "Local_Funding",
expression: "Local_Fund_1 + Local_Fund_2 + Local_Fund_3 + Local_Fund_4",
statistic: "SUM"
}
]
);
GroupBy(grouped, "Year",
[
{ name: "Federal Funding", expression: "Fed_Funding", statistic: "Max" },
{ name: "Local Funding", expression: "Local_Funding", statistic: "Max" },
{
name: "Total Investment",
expression: "Fed_Funding + Local_Funding",
statistic: "Max"
},
{
name: "Federal Percentage",
expression: "Fed_Funding/(Fed_Funding + Local_Funding)",
statistic: "Max"
},
{
name: "Local Percentage",
expression: "Local_Funding/(Fed_Funding + Local_Funding)",
statistic: "Max"
}
]
);
... View more
06-27-2025
09:24 AM
|
0
|
2
|
1090
|
|
POST
|
And for the bonus, you can add a filter // Fetches features from a public portal item
var fs = FeatureSetByPortalItem(
Portal("https://xyz.maps.arcgis.com/"),
"xyz",
0,
["Year", "Program_Type", "Fed_Fund_1", "Fed_Fund_2", "Fed_Fund_3", "Local_Fund_1", "Local_Fund_2", "Local_Fund_3", "Local_Fund_4"],
false
);
var filtered = Filter(fs, "Program_Type <> 'Program Orange'")
return GroupBy(filtered, "Year", [
{
name: "Fed_Funding",
expression: "Fed_Fund_1 + Fed_Fund_2 + Fed_Fund_3",
statistic: "SUM"
}, {
name: "Local_Funding",
expression: "Local_Fund_1 + Local_Fund_2 + Local_Fund_3 + Local_Fund_4",
statistic: "SUM"
}
]);
... View more
06-27-2025
07:01 AM
|
2
|
5
|
1101
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-04-2025 06:39 AM | |
| 1 | 2 weeks ago | |
| 1 | 04-10-2026 12:01 PM | |
| 1 | 04-13-2026 09:11 AM | |
| 1 | 10-11-2023 06:18 AM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|