如何过滤 SSRS 数据集以返回要在文本框属性中使用的单个记录
我在 SSRS 方面是个新手,所以请原谅我使用了错误的术语。但我的任务是创建一个报告,该报告将包含一个数据集,其中包含用于设置文本框的字体大小和粗细、下划线、对齐方式和文本值的记录。像这样的...
大小 粗体 下划线 文本 标识符
10 YN 我的标题 标题
10 NN Some Def Def1
抱歉,间距未对齐。不知道如何在这里做一个表。但基本上,我想知道是否有一种方法可以编写一个表达式,允许我获取标识符为“标题”的记录并使用文本框属性中的其他字段。类似于 Inline Linq 的 where 子句。但我完全迷失了,非常感谢对此的一些帮助。再次感谢。
I'm a total newbie when it comes to SSRS, so please excuse any use of wrong terminology. But I have been given a task to create a report that will have have a dataset that will contain records that will be used to set Textbox's font size and weight, underlined, justification, and text values. Something like this...
Size Bold Underlined Text Identifier
10 Y N My Title Title
10 N N Some Def Def1
Sorry about the misalignment in spacing. Not sure how to do a table here. But basically, I'm wondering if there is a way to write an expression that would allow me to get the record with the Identifier of "Title" and use the other fields in the textbox properties. Something like the where clause of Inline Linq. But I'm at a total lose and would greatly appreciate some help on this. Thanks again.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你应该能够做到这一点。在 TextBox 属性中,选择 FontSize 属性并单击
。然后在表达式框中,选择将包含字体大小的正确数据集和字段。然后对其他属性重复此过程。
You should be able to do this. In the TextBox properties, select the FontSize property and click on
<Expression..>
. Then in the expression box, pick the correct Dataset and field which will contain the font size.Then repeat this process for the other attributes.