In the cloud report builder I made a copy of the "New software installed in the last 7 days" report because I wanted to adjust the days to 3. When I modify the code and just replace the 7 with a 3 it give me a code error, but then if I mess with the code too much i get a 500 error like it crashed.
Original Code:
{
"$or": [
{
"software.installDate": {
"$gte": "$$$(dateFN(-7,d))"
}
}
]
}
New Code
{
"$or": [
{
"software.installDate": {
"$gte": "$$$(dateFN(-3,d))"
}
}
]
}
Any ideas or is the cloud report builder stuff just so new things like this happen?