תודה על הסרטון! לטיפ 5 חסר הסבר לשדה show month מה הקוד? תודה
@odetm2 күн бұрын
@@tomeronon if Date.IsInCurrentMonth([Date]) then "This Month" else Text.PadStart(Text.From(Date.Month([Date])), 2, "0")
@odetmКүн бұрын
InsertMonthSelection = if Culture="he-IL" then (Table.AddColumn(InsertDaySelection , "Show Months", each if Date.IsInPreviousMonth([Date]) then "חודש שעבר" else if Date.IsInCurrentMonth([Date]) then "החודש" else "שאר התאריכים")) else (Table.AddColumn(InsertDaySelection , "Show Months", each if Date.IsInPreviousMonth([Date]) then "Last Month" else if Date.IsInCurrentMonth([Date]) then "This Month" else "Other"))