answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How do you sort numbers ascending in vbs?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you sort three ascending numbers?

Highlight the numbers and click on the sort button. You can sort ascending (smallest to largest) or descending (largest to smallest).


How do you sort three nondescending numbers?

In ascending order, perhaps!


Which action do you perform on a data source to reorganize the order of the record for a merge?

You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.


What does it mean to sort a table in ascending order?

To sort from smallest to largest. Ascending means to go up.


How do you display 15 numbers in an ascending order using an array?

Sort the array then traverse the array, printing the element values as you go.


What is it called when a feature sorts data into ascending alphabetical or numerical order?

ascending sort


How you rearrange the data in ascending or descending order?

Select the data you want to sort. Then use the Sort option, picking A to Z for ascending order or Z to A for descending order. You can choose which columns to sort by and even to do primary and secondary sorts, like sorting first by surname and then by first name.


You can sort numeric fields in ascending order only?

No. They can be sorted either ways. Ascending or Descending.


How can you tell what sort has been preformed out of Ascending and Descending on a computer?

For alphabetical, Ascending is Z->A and Descending is A->Z


Which way is ascending and descending?

Ascending order is when numbers are arranged from the smallest to the largest. Descending order is when numbers are arranged from the largest to the smallest.


Draw a flowchart to arrange 3 numbers in ascending order?

draw a flow chart to arrange 3 numbers in ascending order


Ascending order program for java?

public class BubbleSortAscendingOrderDemo { public static void main(String a[]) { //Numbers which need to be sorted int numbers[] = {23,5,23,1,7,12,3,34,0}; //Displaying the numbers before sorting System.out.print("Before sorting, numbers are "); for(int i = 0; i < numbers.length; i++) { System.out.print(numbers[i]+" "); } System.out.println(); //Sorting in ascending order using bubble sort bubbleSortInAscendingOrder(numbers); //Displaying the numbers after sorting System.out.print("Before sorting, numbers are "); for(int i = 0; i < numbers.length; i++) { System.out.print(numbers[i]+" "); } }