如何在forall循环powerapps之前和之后获取记录

How to get record before and after in forall loop powerapps

我正在尝试 运行 一个 returns 具有相应日期索引和日期文本的 table 的函数。这样我就可以在教程屏幕中显示信息。但是,我对如何访问以前的记录感到困惑。这是我的伪代码:

ForAll( Tweets (sorted by crf1d_date_index),
        If(the record IS NOT the LAST record,
             If('crf1d_date_index' != 'crf1d_date_index' of the NEXT record,
                     { 
                           Step: crf1d_date_index, 
                           Text: crf1d_tweet_time 
                     }
               )
           )

        If(the record IS the LAST record,
             If('crf1d_date_index' != 'crf1d_date_index' of the PREVIOUS record),
                     { 
                           Step: crf1d_date_index, 
                           Text: crf1d_tweet_time 
                     }
               )

)

您可以使用 Sequence function 创建一个索引列表,然后在 ForAll 中使用该列表来访问您的推文列表,类似于以下表达式:

With(
  { myTweets, Tweets(sorted by crf1d_date_index) },
  ForAll(
    Sequence(CountRows(myTweets)),
    With(
      {
        tweet: Index(myTweets, Value),
        previousTweet: If(Value > 1, Index(myTweets, Value - 1)),
        nextTweet: If(Value < CountRows(myTweets), Index(myTweets, Value + 1))
      },
      If(
        Value < CountRows(myTweets),
        If(
          tweet.'crf1d_date_index' != nextTweet.'crf1d_date_index',
          { Step: crf1d_date_index, Text: crf1d_tweet_time }
        ),
        If(
          tweet.'crf1d_date_index' != previousTweet.'crf1d_date_index',
          { Step: crf1d_date_index, Text: crf1d_tweet_time }
        )
      )
    )
  )
)
Set(distinctTweets, AddColumns(
    GroupBy(Tweets, "crf1d_date_index", "Dates"),
    "tweet_time",
    First(Dates).tweet_time));

With({myTweets:SortByColumns(distinctTweets,"crf1d_date_index")},
    ForAll(Sequence(CountRows(myTweets)),
        With({tweet:Index(myTweets,Value)},
            If(true,
                {
                    Step:Value-1,
                    Text: tweet.tweet_time,
                    Image: SampleImage
                }, Blank()
            )
        )
    )
)