Forum Discussion
soporteparaptx
07-20-2023Cloud Apps
Hi HamzaJ
Thanks for the info, sure, it was not enabled. But, unfortunately, I think that is not going to solve the issue. We need to perform AND and OR combination inside a filter of a field, not between filters related to different fields.
Thanks
HamzaJ
07-20-2023Data Integration
Then you could try to do advanced configuration on your filter and add something like this:
{
"or": [{
"last": {
"count": 1,
"offset": 7
}
}, {
"last": {
"count": 1,
"offset": 14
}
}],
"and": [{
"last": {
"count": 1,
"offset": 7
}
}, {
"last": {
"count": 1,
"offset": 14
}
}]
}This is something that is only applicable within 1 filter. In this case its a date, however you can change it to text or numbers depending on your filter
- soporteparaptx07-20-2023Cloud Apps
Thanks HamzaJ
I have tried this way:
{ "or": [ { "startsWith": "212" }, { "startsWith": "213" }, { "startsWith": "215" }, { "startsWith": "21101" }, { "startsWith": "21102" }, { "startsWith": "21114" } ], "and": [ { "doesntStartWith": "215081001" } ] }But if I check the SQL is generating, the AND section is not included...
Any idea about that?
Best!
- soporteparaptx07-20-2023Cloud Apps
see this example... it's not working