Below is how you can convert Screaming Frog PageSpeed Insights (PSI) values from milliseconds to seconds in Google Sheets. This makes the data much easier to read and share with your clients.
Example Formula for Conversion
If the PSI values are in column A (for example), you can use the following formula in column B:
Code:
=TEXT(A2/1000,"0.000")&" seconds"
This formula will:
- Divide the millisecond value in A2 by 1000 to convert it into seconds.
- Format the result to three decimal places.
- Append " seconds" to the output for clarity.
Steps:
- Replace A2 with the actual cell reference where your PSI values start.
- Paste the formula in the corresponding column where you want the result (e.g., column B).
- Drag the formula down to apply it to other cells.