|
POST
|
This would check whether that value exists and append either an A or B. Don't forget to replace "theField" with the appropriate field name. var date = $feature.date_issued
var year = Text(Year(date), '0000');
var month = Text(Month(date), '00');
var day = Text(Day(date), '00');
var fileNumber = year + month + day;
var fileNumberA = `${fileNumber}A`
when (Count(Filter($featureSet, "theField = @fileNumberA")) > 0, `${fileNumber}B`,
Count(Filter($featureSet, "theField = @fileNumber")) > 0, fileNumberA,
fileNumber)
... View more
01-09-2024
08:00 AM
|
0
|
0
|
3304
|
|
POST
|
It seems to have a problem with kml files (kmz files don't seem to be supported). I can add a kml file to the Web AppBuilder Add Data widget and it shows up as expected, but I just get the Set Filter and Export options using the Experience Builder widget
... View more
01-05-2024
02:40 PM
|
1
|
0
|
2287
|
|
POST
|
Did you also click the Action button and select "Add to map"? add data.png
... View more
01-05-2024
12:46 PM
|
0
|
2
|
2304
|
|
POST
|
Could it be a renamed Mobile Geodatabase (.geodatabase extension)?
... View more
01-05-2024
12:31 PM
|
0
|
0
|
13248
|
|
POST
|
The widget pages should have a link to the css information in the See Also section css.png You can also right click on the widget and use the Inspect option to get more information about all of its CSS.
... View more
01-05-2024
05:51 AM
|
1
|
1
|
4783
|
|
POST
|
It turns out my code was incorrect, since the function calls need parenthesis behind them. When I fixed it, it does short-circuit. If the first function is false, then the second function runs console1.png If the first function is true, the second function doesn't run console2.png
... View more
01-04-2024
09:19 AM
|
1
|
0
|
2640
|
|
POST
|
It doesn't look like you can have an expression that is a function call, even if it does return a boolean. For example, running this code gives the error "Test execution error: Execution error - Logical expression can only be combined with || or &&. Verify test data." function first() {
console('First');
return true;
}
function second() {
console('Second');
return true;
}
return first||second;
... View more
01-04-2024
08:45 AM
|
0
|
2
|
2650
|
|
POST
|
Having them in a domain makes a difference. You just have to make one change var status = DomainName($feature, 'CURR_PHASE')
... View more
01-04-2024
08:25 AM
|
1
|
1
|
3673
|
|
POST
|
That expression should work. What are the values in the field "CURR_PHASE"? You can see what is getting returned by adding in the console function in line 2. var status = $feature.CURR_PHASE;
console($feature.CURR_PHASE)
var phrase = When (status == 'Construction', "construction sentence here",
status == 'Design', "design sentence here",
status == 'Completed', "completed sentence here",
"N/A")
return phrase; In the popup expression window, click Run, then click the Console tab to see the results console1.png
... View more
01-04-2024
07:31 AM
|
0
|
5
|
3684
|
|
POST
|
FeatureSetByRelationshipClass was released in the most current version of Arcade (v1.24), which may not work in Field Maps yet. Can you use FeatureSetByRelationshipName instead?
... View more
01-02-2024
02:12 PM
|
0
|
0
|
1133
|
|
BLOG
|
It's the home page. This particular post was an egregious sample, with so many shares. This is where some different logic should be used to display shared posts. Instead of having one post preview for each board that post is shared with, a single preview would have multiple locations listed, like in ArcGIS Parcel Fabric Blog, ArcGIS Mapping and Charting Blog, ArcGIS Maps for Adobe Creative Cloud Blog, etc. One of the drawbacks of sharing a post in multiple boards is that any comments made to a post in one board would not show up in another board.
... View more
01-02-2024
12:08 PM
|
1
|
0
|
992
|
|
POST
|
What does the function GetPopupFields look like? Do you have any logic to determine which fields get added?
... View more
01-02-2024
08:47 AM
|
0
|
1
|
2515
|
|
POST
|
The problem that you're running into is the Filter function requires a FeatureSet, but you're providing it with a value ($datapoint.count_OBJECTID_12_13). That's the same issue you're having with the Average function.
... View more
01-02-2024
08:39 AM
|
1
|
0
|
1049
|
|
BLOG
|
@JesseCloutierI am not subscribed to any of these boards. These are all appearing in the Latest Activity list share.png
... View more
01-02-2024
06:39 AM
|
1
|
0
|
1014
|
| Title | Kudos | Posted |
|---|---|---|
| 3 | a week ago | |
| 1 | 02-04-2025 06:39 AM | |
| 1 | 05-01-2026 08:26 AM | |
| 1 | 04-10-2026 12:01 PM | |
| 1 | 04-13-2026 09:11 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|