Forum Discussion
You could adjust it to look at the time. I have not tested the below, Are you using Global Time? If so, you could add...
Dim povTime as String = api.Pov.Time.MemberId
dim GlobalTime as String = BRApi.Workflow.General.GetGlobalTime(si)
'Convert Times to numerical
Dim myTime as Integer = povTime.Substring(0,4) & if povTime.Length = 6 then "0" & povTime.Substring(povTime.Length - 5) else povTime.Substring(povTime.Length - 5)
Dim GlblTime as Integer = GlobalTime.Substring(0,4) & if GlobalTime.Length = 6 then "0" & GlobalTime.Substring(GlobalTime.Length - 5) else GlobalTime.Substring(GlobalTime.Length - 5)
if myTime > GlblTime then
If ViewMember.IsAnnotationType = False Then
If api.Data.GetDataCell("U8#None").CellStatus.IsDerivedData = False Then
Return api.Data.GetDataCell("U8#None")
Else
Return Nothing
End If
Else
Return Nothing
End If
End If
You may have to tweak this a little bit, as I've written it off the top of my head, but it should be close to what you need. So, if the Global Time is 2023M8, and the pov Time is 2023M9, it will hide the derived data. If the pov Time is 2023M7, it won't.
Thank you, Michel. Will give that a go!
Related Content
- 2 years ago
- 5 months ago
- 3 years ago