Esiste una formula o una funzione per Numbers che restituisce il numero di giorni o settimane per un dato anno

1

Ho una tabella di budget con costo a settimana, quindicina, mese, trimestre e anno. Alcune spese vengono addebitate trimestralmente e altre mensilmente o settimanalmente, ma voglio sapere qual è il valore di una cella per la settimana, il mese ecc. Utilizzando una funzione più efficiente, preferibilmente incorporata per restituire la settimana nella formula.

Ad esempio, la registrazione dell'auto viene eseguita trimestralmente ma la suddivido in settimane, settimane, mesi e anni utilizzando le formule manuali.

Il costo per settimana è = SUM (trimestre * 4 / 52,14) ...

Naturalmente quest'anno (2016) è un anno bisestile quindi ho dovuto passare e aggiornare tutte le mie formule da 52.14 settimane in un anno a 52.28.

Ci deve essere un modo per usare una funzione o una formula che risolva le settimane in un anno. Spero che questa domanda non sia ambigua, ma sto solo applicando ciò che so sulla matematica, non sui fogli di calcolo in generale. Mi rendo conto che è un compito semplice da fare solo una volta ogni 4 anni, ma vorrei solo sapere.

    
posta TimD 14.01.2016 - 12:10
fonte

1 risposta

2

Prova a utilizzare DATEDIF(start-date,end-date,calc-method) diviso per 7 per determinare il numero di settimane.

Ad esempio:

DATEDIF restituisce il numero di giorni tra le date. Dividere che per 7 dovrebbe comportare il numero di settimane. Questo può essere arrotondato come desiderato e calcolato contro.

Dal riferimento alla formula:

The DATEDIF function returns the number of days, months, or years between two dates.
DATEDIF(start-date, end-date, calc-method)
start-date: The starting date. start-date is a date/time value (the time portion is ignored) or date string value.
end-date: The ending date. end-date is a date/time value (the time portion is ignored) or date string value.
calc-method: A modal value that specifies how to express the time difference and how dates in different years or months are handled.
“D”: Return the number of days between the start and end dates.
“M”: Return the number of months between the start and end dates.
“Y”: Return the number of years between the start and end dates.
“MD”: Return the days between the start and end dates, ignoring months and years. The month in end-date is considered to be the month in start-date. If the starting day is after the ending day, the count starts from the ending day as if it were in the preceding month. The year of the end-date is used to check for a leap year.
“YM”: Return the number of whole months between the start and end dates, ignoring the year. If the starting month/day is before the ending month/day, the dates are treated as though they are in the same year. If the starting month/day is after the ending month/day, the dates are treated as though they are in consecutive years.
“YD”: Return the number of days between the start and end dates, ignoring the year. If the starting month/day is before the ending month/day, the dates are treated as though they are in the same year. If the starting month/day is after the ending month/day, the dates are treated as though they are in consecutive years.

    
risposta data 15.01.2016 - 04:01
fonte

Leggi altre domande sui tag