What is your goal?
Write a number value to an Airtable Number field (תדירות/Frequency in days) based on a singleSelect field (קטגוריה/Category) value using ifempty+switch in the mapper.
What is the problem & what have you tried?
The Number field does not appear in the INPUT bundle of the “Airtable Update a Record” module at all — it is completely missing from the Record Collection. So Airtable never gets updated.
Formula used in the mapper field:
{{ifempty(95.תדירות (ימים); switch(95.קטגוריה; “A”; 14; “B”; 7; “C”; 10; 7))}}
- Module 95 = Airtable Get a Record
- OUTPUT of module 95 confirms: קטגוריה = A (plain string)
- The Number field תדירות (ימים) is completely empty in Airtable before the run
- Smart links = false, Use Column ID = false
The INPUT bundle of the Update Record module shows Date, Status, Log, Publication count — but תדירות (ימים) is simply NOT there.
What I have tried:
- Added parseNumber() wrapper — same result
- Enabled Smart links = Yes — same result
- Confirmed singleSelect returns plain string “A” not an object
Why is Make dropping the field from the Collection? Is ifempty with a null Number field causing the issue? What is the correct IML formula?


