Display Data as distance from a point

MG12345

New Member
Joined
Jun 10, 2023
Messages
4
Office Version
  1. 365
Platform
  1. Windows
Hey Good day, I have data from a table and its angles in a circle, and then distance from the center point.

Currently the data is in Mils but I'm willing to set up extra columns to convert it to degrees if needed.

1686406539395.png

thats an example of what the data table looks like, it's in a continuous row(i just modified it to be easier to see) and goes to 20 slices of angle, using between from 1 to 20 of them.
I'm also willing to change up the layout if needed.

1686406790098.png
that's the ideal end result. i just made it up on PowerPoint to give you a visual of what it could hopefully look like.
It's probably not super accurate, but just to give you a reference of data to end result.
I have a 365 business account, and I'm willing to try to export it to another 365 program if needed.

thanks for your time, any help or ideas is appreciated
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
it figured it out, I need to convert my data into x and y coordinates in a separate table

using =(distance)*(COS((angleinmills)/3200*PI())) for x coordinate
using =(distance)*(COS((angleinmills)/3200*PI())) for y coordinate

then used x column as my x data
y column as my y data

i also created a circle as a separate data set bigger than my largest point, so that the chart wouldn't shrink in certain directions

1686424113217.png
 
Upvote 0
it figured it out, I need to convert my data into x and y coordinates in a separate table

using =(distance)*(COS((angleinmills)/3200*PI())) for x coordinate
using =(distance)*(COS((angleinmills)/3200*PI())) for y coordinate

then used x column as my x data
y column as my y data

i also created a circle as a separate data set bigger than my largest point, so that the chart wouldn't shrink in certain directions

View attachment 93321
refrence my last post,
using =(distance)*(COS((angleinmills)/3200*PI())) for x coordinate
using =(distance)*(sin((angleinmills)/3200*PI())) for y coordinate

as well as in the image, distance is actually angle in mils, and r is distance in radius

sorry about that
 
Upvote 0
1686429394613.png
1686429641356.png
1686429686872.png


so, I needed to convert my data into x and y coordinates in a separate table

x coordinate formula =Distance*(COS((angleinmills+1600)/3200*PI()))
y coordinate formula =Distance*(SIN((angleinmills+1600)/3200*PI()))

I had to also check values in reverse order to get it to go clockwise instead of counterclockwise, like a compass does
and the +1600 in the formula is to rotate it to the North.

sorry about the confusing posts, while I had it partially figured out.
 
Upvote 0
Solution

Forum statistics

Threads
1,215,073
Messages
6,122,975
Members
449,095
Latest member
Mr Hughes

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top