A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Olivier,
Try this macro:
Sub mymacro()
Dim cell As Range
For Each cell In Selection.Cells
If Not (IsError(cell.Value)) Then
If cell.Value = "Received" Then
cell.Formula = cell.Value
End If
End If
Next
End Sub
To use the macro, first, select your range of cells to scan. Then run the macro.
The macro will loop through each cell in your selection, and replace the formula with the value when the formula returns "Received".
Regards,
Edwin Tam
Excel Power Expander - http://www.vonixx.com