Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
列BからUに約400行のデータがあります。列Fは、日付が投稿される行です。隣接する残りのセルを台無しにすることなく、すべてのデータが列Fで編成されている場所に配置する必要があります。
これは可能ですか?もしそうなら、どのように?
Range("F1").Sort key1:=Range("F1"), order1:=xlAscending
並べ替えてはいけないヘッダー行がある場合は、Range("B2:U10").Sort代わりに並べ替える完全な範囲(...など)を指定する必要があります。代わりに降順にする場合は、order1をxlDescendingに置き換えます。
Range("B2:U10").Sort