ssrs expression to split string possible?

后端 未结 4 559
天涯浪人
天涯浪人 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:05

    This answer was originally posted in the question instead of being posted as an answer:

    =(Split(Fields!columnx.Value,".")).GetValue(0)
    =(Split(Fields!columnx.Value,".")).GetValue(1)
    =(Split(Fields!columnx.Value,".")).GetValue(2)
    

提交回复
热议问题