2週間前までの売上を集計しカードで表示したい
答え
-
I would create a beast mode like this
DATEDIFF(CURDATE() , yourdatefield)
Then put this field in your filter and set it to values greater than or equal to 14. This will restrict to rows that are 14 days or older and your chart will do the rest.
**Check out my Domo Tips & Tricks Videos
**Make sure to any users posts that helped you.
**Please mark as accepted the ones who solved your issue.1 -
内容としては、MarkSnodgrassさんの通りとなります。
具体的に実装に必要なBeastModeの例を追加で紹介します。
■BeastMode「直近2週間か?」
case when DATEDIFF(CURRENT_DATE(),`日付`) <= 13 then 'Yes' else 'No' end
2 -
カードでフィルタすることとなります。
1