在使用休息时间时获取 SAP Web Intelligence 中表中的最小和最大日期
这可以通过根据你要查找的条件创建指示符来实现——POST 测试的最小抽取日期时间和 PRE 测试的最大抽取日期时间。
一旦创建此指示符,它将针对根据条件以黄色突出显示的行显示“Y”,针对其它行显示“N”。
=If ([Drawn date] = Min([Drawn date]) In ([Patient ABO/RN]) Where ([PrePost] = "POST") ) Or ([Drawn date] = Max([Drawn date]) In ([Patient ABO/RN]) Where ([PrePost] = "PRE") ) Then "Y" Else "N"
你需要对指标值- “Y”应用过滤器。
另一个选项是创建 3 个如下变量 −
Max Accession: =Max([Accession]) Where ([Variables].[Pre/Post] = "PRE") In ([Patient Birth Date]) Min Accession: =Min([Accession]) Where ([Variables].[Pre/Post] = "POST") In ([Patient Birth Date]) Accession Min/Max= If ([Accession]=[Min accession])Then 1 ElseIf ([Accession] = [Max accession]) Then 2 Else 0 (By using these, you will get 1 to the min accession, 2 to maximum and 0 to the rest of values in the report)
然后应用过滤器,以选择大于 0 的值。
广告