レポートに 40 の長さが必要なフィールドがあります。文字列がその長さでない場合は、スペースを追加する必要があります。
ありがとう。
の線に沿って何かを試してください
if length({yourfieldnamehere}) < 40 then {yourfieldnamehere} + space(40 - length({yourfieldnamehere})) else {yourfieldnamehere}
変数に 40 個の空白を追加し、結果の文字列の最初の 40 文字を取得します。
何かのようなもの
mid( (yourfield + space(40)), 1, 40)
動作するはずです。