Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Formel in Diagramm / Tabelle mit aktuellem Datum

Hallo,

wie kann ich in einer Tabelle Daten ziehen, die nur das aktuelle Datum betreffen??

Ich habe es so versucht:

= Sum({<Buchungsdatum={$(=month(today()))}>}RechnungPosWarenwertNetto)

DANKE

Grüße

Mariella

1 Solution

Accepted Solutions
Not applicable
Author

....hat sich geklärte, habe die Lösung gefunden:

= Sum({<BuchungsMonat={$(=(month(today())))}>}RechnungPosWarenwertNetto)

Danke für die Hilfe.

View solution in original post

4 Replies
Anonymous
Not applicable
Author

Mariella,

If you have in the expression something like below, the value is only shown when it is equal to today ...

I assume the Buchungsdatum is a complete date field??

sum(if( Buchungsdatum = today(), RechnungPosWarenwerthNetto))

also with set analysis this can be done ... is it correct using the month??

rgrds Anita

Not applicable
Author

Hallo Anita,

danke für Deine Antwort.

Leider klappt es mit if... nicht.

Ich will, dass unabhängig vom Auswahlstatus die Werte mit dem aktuellen Buchungsdatum angezeigt werden.

Deshalb auch die Formel: = Sum ({<Buchungsdatum={$(=month(today()))}>} RechnungPosWarenwertNetto)

Buchungsdatum ist bei mir eine 5-stellige Zahl, die ich im Format Datum anzeigen lasse.

Grüße

Mariella

Anonymous
Not applicable
Author

Mariella,

Do you have a sample, so we can work with that?

If you have one expression containing the line below ... it should only show the rows containing the Buchungsdatum of today ...

sum( if(floor(Buchungsdatum) = today(), RechnungPosWarenwertNetto) )

rgrds,

Anita

Not applicable
Author

....hat sich geklärte, habe die Lösung gefunden:

= Sum({<BuchungsMonat={$(=(month(today())))}>}RechnungPosWarenwertNetto)

Danke für die Hilfe.