Hello all,
I am trying to work on a formula to make it easier for me to work on Global Updates in Control Center easier in the future. I currenly have a formula that coverts the data from Date to Text instead of just a simple link to the (lets say) the Start Date column; I had to do this because of the Global differences in date formats.
So what I want to do is run an Index formula that will search for the specific task name and then display the Start date for that task in my cell where the link is. The problem i am running into is that the column where this formula sits is a Text column.This the formula as it currently is.
=INDEX([Project Milestones]:Predecessors, MATCH("Task name", [Project Milestones]:[Project Milestones], 0), 6)
If i change the text column to a date column then the formula works.
Thanks in advance.