I have dob column how can i calculate age by using DOB column in derived column ? I tried using as below but this throws an error .
datediff(yy, Dob,getdate())
Try using the following expression:
DATEDIFF("yy" , [DOB], GETDATE())
References: