{table.time}*{table.cost}を乗算する数式が必要です。これは私が試したものです:tonumber({@timeformat})* {Table.cost}
Formula for {@timeformat}
whileprintingrecords;
numberVar hrs;
numberVar min;
stringVar hhmm;
hrs := Remainder(Truncate({table.time}/60),60);
min := Remainder({table.time},60);
hhmm := totext(hrs,"00") + ":" + totext(min,"00");
hhmm
単純にそれを行うと、レポートを実行したときにCrystalから文字列エラーが発生します。文字列は数値ではありません。どんな助けでも大歓迎です。
ありがとう