ssrs expression to split string possible?

后端 未结 4 551
天涯浪人
天涯浪人 2020-12-18 01:39

so in my query i have select columnx from tblz

it returns 001.255556.84546

I want to be able to split this via \'.\' and put it int

4条回答
  •  独厮守ぢ
    2020-12-18 02:07

    For info, in 2008 these dont work, you have to do the following:

    =Split(Fields!returnedValue.Value, ".").GetValue(0)
    

提交回复
热议问题