使用中断在 SAP Web Intelligence 中获取表中的 MIN 和 MAX 日期
可以通过创建一个指标来实现此目标,具体指标取决于您要查找的条件 - POST-Test 的最小抽取日期时间和 PRE-Test 的最大抽取日期时间。
一旦创建此指标,它将根据条件以黄色突出显示的行显示“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 的值。
广告