本文介绍了周结束日期文本框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,

如何在报告中显示基于参数显示周结束日期的文本框?

How do you get a text box in a report to display a week ending date based on parameters?

这是我尝试过的:

= DateAdd(" d",7 - Weekday(Today),Parameters!DateCreated.Value).ToString(" MM / dd / yyyy" )

=DateAdd("d", 7 - Weekday(Today), Parameters!DateCreated.Value).ToString("MM/dd/yyyy")

这是关闭的,但它没有给出所选周的最后一天。

This is close, but it doesn't give the last day of the week selected.

我听到了,我忘记了。我看,我记得。我明白了。

I hear and I forget. I see and I remember. I do and I understand.

推荐答案


这篇关于周结束日期文本框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 12:33