Plotting Lines in Excel [closed] - excel

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
I have data in the following format:
Variable - Value
A 1
B 2
A 3
B 4
and so on.
Notice how the variable is recurring for different values. I want to draw a line for each variable that shows its different values assuming the X-axis is time.
Please any help.

I would start off by creating a Pivot table based on the data that you have and then create the line graph from there.

Related

Adding cifres from left excel [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
I have a sheet with some datas in D column. I need to extract the values that have less then 11 characters and adding from left many 0 untill reach 11 characters.. I explain with an example:
12345678912 --> this is correct
123456789 --> this is incorrect and has 9 characters so i need adding from left 2 zeros
result:
00123456789 --> now is correct
Is there a macro or a formula that could be useful for my goal? Thanks
Assuming the data is stored as numbers, you can simply use =TEXT(A1,"00000000000"). If it's stored as text then use =REPT("0",LEN(A1)-11))&A1

There is any way for implementing ttl on counter column in cassendra [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
incr like_unlike_counter1234['b']['total']by 1 with ttl=10;
How to implement ttl in counter column .There is any way for that?
No, counter columns don't support TTLs. See Jira issue CASSANDRA-2103 for the technical details why this is tricky.

Creating charts using macro [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have a tiny problem with creating a chart by excel macro. Type of chart what i choose is "Clustered Horizontal Cylinder". I wonder how to code macro to format wall of chart. Example, I want wall of chart looks like :
Rotation : X - 0 degree ; Y - 7 degree.
My English's so bad. Sorry !
Using Record, these are the statements you can make (with the Chart in question Active).
Sub Walls()
ActiveChart.Walls.Select
Selection.Format.ThreeD.RotationX = 0
Selection.Format.ThreeD.RotationY = 97
End Sub

how to create stacked histogram or dotplot in stata [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have several variables with monthly stock returns like qqqret, gldret,spyret. I would like to create a stacked histogram or dotplot of them all on the same scale. any ideas how?
thanks!
ps. if i stack my vectors on top of each other and create an indicator variable for each one I could use strip plot. but i want to be able to say something like "hist qqqret gldret spyret"
dotplot supports a varlist: see the help.
stripplot (SSC) is an alternative.

how to connect 4 random points with 4 no intersecting line segments? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
The points are in a plane,marked with two numbers indicating coordinates.give out a connect sequence.
Take the convex hull. If it is a quadrilateral, you are done. If it is a triangle, you can break any of its edges apart to include the inner point.

Resources