Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello together,
i have a question about the pie chart. I have the table with the dates:
Now I wanted to show
If (Lieferdatum = Befuellt_Datum) than "okay"
If (Lieferdatum > Befuellt_Datum) than "okay"
If (Lieferdatum < Befuellt_Datum) than "wrong"
and this integrated in a pie chart. How is that possible?
While loading you can
If (date(Lieferdatum,'DD.MM.YYYY') >= date(Befuellt_Datum,,'DD.MM.YYYY'),'okay',
If (date(Lieferdatum,,'DD.MM.YYYY') < date(Befuellt_Datum,''DD.MM.YYYY'),'wrong'))