Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2025 06:48 PM
Python 3.10.12 I am trying to get these filter results: example:
If "column1" = '2024' and column2 in ('DE','SC') then 'value1" else 'value2'
If "column1" = "2023" and column2 in ('DE,'SC')
then "value3 else "value4"
if the row/record does not fit the criteria above, then return the value in column3. Any ideas?